public Dealer(PlayingCardDeck deck) : base(deck)
 {
 }
Esempio n. 2
0
 public Player(PlayingCardDeck deck) : base(deck)
 {
 }
Esempio n. 3
0
 public Hand(PlayingCardDeck deck)
 {
     this.deck = deck;
 }