Exemplo n.º 1
0
 public void GiveCard(Card card)
 {
     Cards.Add(card);
 }
Exemplo n.º 2
0
 //TODO: Do something different with this. Research.
 private static string AssignCardImageFile(Card c)
 {
     string filename = "";
     filename += c.Value + c.Suit;
     return filename;
 }
Exemplo n.º 3
0
 public void AddCardToHand(Card c)
 {
     hand.Add(c);
 }