sledgemapper/Sledgemapper/Program.cs
Michele Scandura c293490995 refactoring
2020-11-04 09:59:58 +00:00

14 lines
234 B
C#

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