Examples of TurnMechanicsRulesCard


Examples of voodoo.collection.card.rules.TurnMechanicsRulesCard

    public void perform() {

        // Create the players
        for( int i = 0; i < _numPlayers; i++ ) {
            Player nextPlayer = new Player( "Player" + (i+1) );
            nextPlayer.getHidden().add( new TurnMechanicsRulesCard( nextPlayer ) );
            getGame().getPlayers().add( nextPlayer );
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.