public PlayingTableState(PokerTable gameMediator, ServerTable table, BettingRules rules) {
this(gameMediator, table, table.getRandomPlayer(), rules);
}
public PlayingTableState(PokerTable gameMediator, ServerTable table, MutableSeatedPlayer dealer) {
this(gameMediator, table, dealer, new NoLimit());
}