Esempio n. 1
0
        public void RefreshShoe()
        {
            if (RoundInProgress != null)
            {
                throw new InvalidOperationException("Round is in play");
            }

            _shoe = new CardShoe(8);
        }
Esempio n. 2
0
 public BlackjackGameDealer()
 {
     _shoe = new CardShoe(1);
 }