public bool Execute(Command command) { Console.Clear(); Game game = new Game(); //creates and plays new game game.play(); return false; }
static int Main() { Console.SetWindowSize(Console.LargestWindowWidth - 5, Console.LargestWindowHeight - 5); Console.ForegroundColor = ConsoleColor.Yellow; Game _game = new Game(); _game.play(); return 0; }