48495051525354
/** * Automate representant un jeu de poker */ public PokerGame() { this(new RandomDealer()); }
65666768697071
* @param wtaPotWon * Attente apres chaque pot won ! (ms) */ public PokerGame(TableInfo table, int wtaPlayerAction, int wtaBoardDealed, int wtaPotWon) { this(new RandomDealer(), table, wtaPlayerAction, wtaBoardDealed, wtaPotWon); }