sledgemapper/Sledgemapper/Program.cs
2020-11-04 09:52:29 +00:00

14 lines
221 B
C#

using System;
namespace MyGame
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}