Beispiel #1
0
        public bool IsStronger(Card otherCard)
        {
            if (Face == otherCard.Face)
            {
                return (Suit > otherCard.Suit);
            }

            return (Face > otherCard.Face);
        }
Beispiel #2
0
 public void Push(Card card)
 {
     cardsQueue.Enqueue(card);
 }