14 lines
234 B
C#
14 lines
234 B
C#
using System;
|
|
|
|
namespace Sledgemapper
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
using (var game = new Sledgemapper())
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|