2022-08-30 23:51:07 +08:00

15 lines
335 B
C#

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