Package org.cspoker.server.embedded.gamecontrol.rules

Examples of org.cspoker.server.embedded.gamecontrol.rules.NoLimit


  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());
  }
View Full Code Here


  public Game(ServerTable table, TableConfiguration configuration) {
    this(table, configuration, table.getRandomPlayer());
  }
 
  public Game(ServerTable table, TableConfiguration configuration, MutableSeatedPlayer dealer) {
    this(table, configuration, dealer, new NoLimit());
   
  }
View Full Code Here

TOP

Related Classes of org.cspoker.server.embedded.gamecontrol.rules.NoLimit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.