Example #1
0
 public void Play()
 {
     if (IsOver || IsFinished)
     {
         throw new Exception("Start new game, please");
     }
     Console.WriteLine("Playing the game");
     _hero.Fight();
     Console.WriteLine();
 }