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