Ejemplo n.º 1
0
 //addcardtohand method, add a card to the players hand
 public void AddCard(Card card)
 {
     hand.Add(card);
     cardCount = hand.Count();
 }
Ejemplo n.º 2
0
 //addcardtoriver method, will add a card to talon
 public void AddCard(Card card)
 {
     theTalon.Add(card);
     riverCardsRemaning = theTalon.Count();
 }