Esempio n. 1
0
        public Card RemoveCard()
        {
            Card toReturn = ContainingCards[0];

            TotalValue -= toReturn.Value;
            ContainingCards.RemoveAt(0);
            return(toReturn);
        }
Esempio n. 2
0
 public void PutCard(Card toPut, bool reveal = false)
 {
     toPut.Revealed = reveal;
     ContainingCards.Add(toPut);
     TotalValue += toPut.Value;
 }