sledgemapper/MyGame/Program.cs
Michele Scandura 024df6278c First commit
2020-10-30 20:02:00 +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();
}
}
}