2022-06-06 12:28:36 +00:00
|
|
|
namespace UI_WinForms;
|
|
|
|
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
[STAThread]
|
|
|
|
private static void Main()
|
|
|
|
{
|
|
|
|
ApplicationConfiguration.Initialize();
|
2022-06-06 20:07:17 +00:00
|
|
|
|
|
|
|
// Start the loader screen:
|
|
|
|
var loader = new Loader();
|
|
|
|
Application.Run(loader);
|
|
|
|
|
|
|
|
// Start the main app:
|
2022-06-06 12:28:36 +00:00
|
|
|
Application.Run(new Main());
|
|
|
|
}
|
|
|
|
}
|