Update UI, LOCFile, COLFile, add PCKFileReader/Writer, update codebase to use new reader/class objects

This commit is contained in:
miku-666
2022-06-04 21:13:52 +02:00
parent c7b17adfb2
commit 6c65c19de7
43 changed files with 1435 additions and 2072 deletions

View File

@@ -16,14 +16,12 @@ namespace PckStudio
public static string baseurl = "https://www.pckstudio.xyz/studio/PCK/api/";
public static string backurl = "https://raw.githubusercontent.com/PhoenixARC/pckstudio.tk/main/studio/PCK/api/";
public static string Appdata = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "/PCK Studio/";
public static bool IsDev;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
IsDev = args.Length > 0 && args[0] == "-dev";
Application.Run(new PckStudio.FormMain());
}
}