public Engine(ScoreBoard board) { this.scoreBoard = board; this.guessCount = 0; this.cheats = new Cheat(); this.theNumber = new GameNumber(); }
private void ResetGameData() { Console.WriteLine(); Printer.PrintWelcomeMessage(); this.theNumber = new GameNumber(); this.cheats = new Cheat(); this.guessCount = 0; }