Package ch.bfh.jass.game.JassCardSet

Examples of ch.bfh.jass.game.JassCardSet.CardColor


     * @return boolean
     */
    @Override
    public boolean isPlayable(Card card, Table table) {

        CardColor tableColor;

        if (table.getSize() <= 0) {
            return true;
        } else if ((tableColor = table.getCard(table.getFirstCardPlace()).getColor()) == card.getColor()) {
            return true;
View Full Code Here

TOP

Related Classes of ch.bfh.jass.game.JassCardSet.CardColor

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.