Ejemplo n.º 1
0
 public GameDescriptor(EnumPokerSites siteName,
                       GameType gameType,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType, TournamentDescriptor tournament)
     : this(PokerFormat.CashGame, siteName, gameType, limit, tableType, seatType, tournament)
 {
 }
Ejemplo n.º 2
0
 public GameDescriptor(PokerFormat pokerFormat,
                       EnumPokerSites siteName,
                       GameType gameType,
                       Limit limit,
                       TableType tableType,
                       SeatType seatType,
                       TournamentDescriptor tournament)
 {
     PokerFormat = pokerFormat;
     Site        = siteName;
     GameType    = gameType;
     Limit       = limit;
     TableType   = tableType;
     SeatType    = seatType;
     Tournament  = tournament;
 }