示例#1
0
        static void Main(string[] args)
        {
            Game game = new Game();

            game.InitGame();
            game.Loop();
        }
示例#2
0
 /// <summary>
 /// Overpaint the old hero
 /// </summary>
 public void Clear(Game game)
 {
     Console.BackgroundColor = game.BackgroundColor;
     Console.SetCursorPosition(this.X, this.Y);
     Console.Write(" ");
 }