Example #1
0
 public void Add(Card newCard)
 {
     _cards.Add(newCard);
 }
 /// <summary>
 /// When the initial hand his made put the the second card of the pair face down
 /// </summary>
 private static void HideSecondCard(Card[] cards)
 {
     cards[1].IsFaceDown = true;
 }