Package bluffinmuffin.poker.entities

Examples of bluffinmuffin.poker.entities.TableInfo


     * @param dealer
     *            Le dealer
     */
    public PokerGame(AbstractDealer dealer)
    {
        this(dealer, new TableInfo(), 0, 0, 0);
    }
View Full Code Here


                {
                    m_userInfo.setTotalMoney(m_userInfo.getTotalMoney() + m_player.getMoneySafeAmnt());
                }
                m_isConnected = false;
                m_player.setZombie();
                final TableInfo t = m_game.getTable();
                if (m_game.getState() == TypeState.PLAYERS_WAITING)
                {
                    m_game.leaveGame(m_player);
                }
                else if (t.getNoSeatCurrPlayer() == m_player.getNoSeat())
                {
                    if (t.canCheck(m_player))
                    {
                        m_game.playMoney(m_player, 0);
                    }
                    else
                    {
View Full Code Here

TOP

Related Classes of bluffinmuffin.poker.entities.TableInfo

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.