mirror of
https://github.com/milimoe/FunGame-Testing.git
synced 2025-04-22 04:09:34 +08:00
20 lines
619 B
C#
20 lines
619 B
C#
using Milimoe.FunGame.Testing.Desktop.Solutions;
|
|
|
|
namespace Desktop
|
|
{
|
|
internal static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
// see https://aka.ms/applicationconfiguration.
|
|
ApplicationConfiguration.Initialize();
|
|
//Application.Run(new ChessBoardExample.ChessBoardExample());
|
|
Application.Run(new EntityEditor());
|
|
}
|
|
}
|
|
} |