Package org.ozsoft.texasholdem

Examples of org.ozsoft.texasholdem.Table


        players.put("Player", humanPlayer);
        players.put("Joe",    new Player("Joe",   STARTING_CASH, new BasicBot(0, 75)));
        players.put("Mike",   new Player("Mike",  STARTING_CASH, new BasicBot(25, 50)));
        players.put("Eddie"new Player("Eddie", STARTING_CASH, new BasicBot(50, 25)));

        table = new Table(TABLE_TYPE, BIG_BLIND);
        for (Player player : players.values()) {
            table.addPlayer(player);
        }
       
        playerPanels = new HashMap<String, PlayerPanel>();
View Full Code Here

TOP

Related Classes of org.ozsoft.texasholdem.Table

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.