This commit is contained in:
PhoenixARC
2021-06-20 10:55:29 -04:00
parent 85d7dc3d6e
commit 6b68cb9b97
65 changed files with 18039 additions and 3695 deletions

View File

@@ -15,14 +15,20 @@ namespace MinecraftUSkinEditor
{
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 bool IsDev = false;
public static FormMain formMain;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
static void Main(string[] args)
{
try
{
if (args[0] == "-dev")
IsDev = true;
}
catch { }
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);