public MapConsole(RobotsGame game, int width, int height) : base(width, height)
        {
            _game = game;

            // Keyboard setup
            SadConsole.Engine.Keyboard.RepeatDelay = 0.07f;
        }
 static void Main(string[] args)
 {
     using (var game = new RobotsGame())
         game.Run();
 }