This commit is contained in:
zznty
2022-10-28 01:58:54 +07:00
commit 0108e8679f
9 changed files with 321 additions and 0 deletions

12
CringeLauncher/Program.cs Normal file
View File

@@ -0,0 +1,12 @@
using System.Diagnostics;
using CringeLauncher;
#if DEBUG
while (!Debugger.IsAttached)
Thread.Sleep(100);
#endif
using var launcher = new Launcher();
launcher.Initialize(args);
launcher.Run();