Initial refactorin

This commit is contained in:
Michele Scandura 2020-11-04 09:52:29 +00:00
parent 89b059abfb
commit 5ce6580c6f
593 changed files with 52 additions and 78 deletions

14
Sledgemapper/Program.cs Normal file
View file

@ -0,0 +1,14 @@
using System;
namespace MyGame
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}