I18NCommander/I18N Commander/UI WinForms/Program.cs

17 lines
361 B
C#
Raw Normal View History

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());
}
}