Package bluffinmuffin.poker.observer

Examples of bluffinmuffin.poker.observer.PokerGameObserver


     *            Attente apres chaque pot won ! (ms)
     */
    public PokerGame(AbstractDealer dealer, TableInfo table, int wtaPlayerAction, int wtaBoardDealed, int wtaPotWon)
    {
        m_dealer = dealer;
        m_gameObserver = new PokerGameObserver();
        m_table = table;
        m_state = TypeState.INIT;
        m_WaitingTimeAfterPlayerAction = wtaPlayerAction;
        m_WaitingTimeAfterBoardDealed = wtaBoardDealed;
        m_WaitingTimeAfterPotWon = wtaPotWon;
View Full Code Here

TOP

Related Classes of bluffinmuffin.poker.observer.PokerGameObserver

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.