Example #1
0
        public void addToHand(Card pCard)
        {
            hand.Add((playerCard)pCard);

            if (hand.Count > 7)
            {
                // Discard Protocol
            }
        }
Example #2
0
 public void discoverCure(string name, Card[] cards)
 {
 }