mine2d/Mine2d/Program.cs

15 lines
395 B
C#

namespace mine2d;
class Program
{
static void Main(string[] args)
{
bool isHost = args.Contains("--host");
// bool isHost = true;
var game = new Mine2d(isHost);
game.Run();
// var p = new Publisher(isHost ? InteractorKind.Server : InteractorKind.Client);
// p.Dump();
// Console.WriteLine("Hello World!");
}
}