I18NCommander/I18N Commander/UI WinForms/Program.cs

17 lines
361 B
C#

namespace UI_WinForms;
internal static class Program
{
[STAThread]
private static void Main()
{
ApplicationConfiguration.Initialize();
// Start the loader screen:
var loader = new Loader();
Application.Run(loader);
// Start the main app:
Application.Run(new Main());
}
}