예제 #1
0
 public BlackJackDealer(CardsDeck deck) : base("dealer", 0, Gender.Male)
 {
     this.Deck        = deck;
     this.Hand        = new List <Card>(6);
     this.PlayerFrame = Draw.dealerCardsFrame;
 }
예제 #2
0
 public void ShuffleCards()
 {
     //TODO: implement method to call the shuffleDeck method of the deck
     this.Deck = new CardsDeck();
     this.Deck.Suffle();
 }