Exemplo n.º 1
0
 public void EndRound()
 {
     if (_deckService.CardCount() <= 0 || _player.PlayerMoney <= 0)
     {
         ConsoleService.EndGame();
     }
 }
Exemplo n.º 2
0
        public int StartRound()
        {
            int money = ConsoleService.InputMoney(_player.PlayerMoney, _deckService.CardCount());

            _deckService.Shuffle();
            return(money);
        }