Example #1
0
 private void EnterArena()
 {
     GameService.NewPage("You enter the arena", "arena");
     _combatService.ArenaFight(_characterSuperModel);
     if (_characterSuperModel.IsDead)
     {
         Console.WriteLine("YOU DIED");
         Console.ReadKey();
     }
 }