Пример #1
0
 public void DealHand(HandController hand, string hand_)
 {
     Card[] cards;
     cards = deck.DealCards(hand_); //deal the cards
     hand.AssignCards(cards);       //assign the cards to hand
 }