Package bluffinmuffin.poker.entities.dealer

Examples of bluffinmuffin.poker.entities.dealer.RandomDealer


    /**
     * Automate representant un jeu de poker
     */
    public PokerGame()
    {
        this(new RandomDealer());
    }
View Full Code Here


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

TOP

Related Classes of bluffinmuffin.poker.entities.dealer.RandomDealer

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.