Files
PCK-Studio/MinecraftUSkinEditor/Classes/Program.cs
2021-05-13 19:54:15 -04:00

41 lines
1.2 KiB
C#

using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms;
using PckStudio.Classes;
namespace MinecraftUSkinEditor
{
static class Program
{
public static string baseurl = "http://www.pckstudio.tk/studio/PCK/api/";
public static string backurl = "https://phoenixarc.github.io/pckstudio.tk/studio/PCK/api/";
public static FormMain formMain;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
PckStudio.Forms.goodbye gg = new PckStudio.Forms.goodbye();
PckStudio.Forms.Job gj = new PckStudio.Forms.Job();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\goodbyemark"))
gg.ShowDialog();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\discordmark"))
gj.ShowDialog();
Application.Run(new FormMain());
}
}
}