// makeDeck ///////////////////////////////////// private Deck makeDeck(bool is54) { this.makeDeck52(); if (is54) { Card.NewJoker(Card.JokerType.Big, this); Card.NewJoker(Card.JokerType.Little, this); } return(this); }
public static Card NewJoker(JokerType jokerType) { return(Card.NewJoker(jokerType, null)); }