mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
15 lines
335 B
C#
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());
|
|
}
|
|
}
|
|
} |