Package org.ozsoft.texasholdem

Examples of org.ozsoft.texasholdem.Player


       
        boardPanel = new BoardPanel(controlPanel);       
        addComponent(boardPanel, 1, 1, 1, 1);
       
        players = new LinkedHashMap<String, Player>();
        humanPlayer = new Player("Player", STARTING_CASH, this);
        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);
        }
View Full Code Here

TOP

Related Classes of org.ozsoft.texasholdem.Player

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.