Files
snake/Snake/Program.cs
2026-01-27 11:02:21 +01:00

12 lines
225 B
C#

namespace Snake
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}