Пример #1
0
 // makeDeck /////////////////////////////////////
 private Deck makeDeck(bool is54)
 {
     this.makeDeck52();
     if (is54)
     {
         Card.NewJoker(Card.JokerType.Big, this);
         Card.NewJoker(Card.JokerType.Little, this);
     }
     return(this);
 }
Пример #2
0
 public static Card NewJoker(JokerType jokerType)
 {
     return(Card.NewJoker(jokerType, null));
 }