Package bluffinmuffin.game.entities

Examples of bluffinmuffin.game.entities.Card


                    else
                    {
                        p.setNotPlaying();
                    }
                    final List<Integer> ids = command.getCardsId();
                    final Card gc0 = Card.getInstance(ids.get(0));
                    final Card gc1 = Card.getInstance(ids.get(1));
                    p.setCards(gc0, gc1);
                    m_gameObserver.playerHoleCardsChanged(p);
                }
            }
           
View Full Code Here


    public void setCards(CardSet set)
    {
        m_cards.clear();
        while (!set.isEmpty())
        {
            final Card gc = set.pop();
            m_cards.add(gc);
        }
    }
View Full Code Here

TOP

Related Classes of bluffinmuffin.game.entities.Card

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.