Example #1
0
 public PlayingCard(PlayingCardTypes type, PlayingCardValues value, string color)
 {
     Type  = type;
     Value = value;
     Color = color;
 }
Example #2
0
 public PlayingCard(PlayingCardValues value, PlayingCardSuits suit)
 {
     _Value = value;
     _Suit  = suit;
 }
Example #3
0
 public PlayingCard(PlayingCard copy)
 {
     _Value = copy.Value;
     _Suit  = copy.Suit;
 }
Example #4
0
 public void Enqueue(PlayingCardValues cardValue, PlayingCardSuits cardSuit)
 {
     Enqueue(new PlayingCard(cardValue, cardSuit));
 }