예제 #1
0
 public void Hit(Card c)
 {
     hand.Add(c);
 }
예제 #2
0
 public BlackjackHand(Card c)
 {
     hand = new List<Card>();
     hand.Add(c);
 }