2022-10-01 22:11:12 +08:00

15 lines
343 B
C#

namespace Milimoe.FunGame.Desktop.UI
{
internal static class Start
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new Main());
}
}
}