Examples of chooseMode()


Examples of mage.players.Player.chooseMode()

            }
            Player player = game.getPlayer(playerId);
           
            // player chooses modes manually
            while (this.selectedModes.size() < this.getMaxModes()) {
                Mode choice = player.chooseMode(this, source, game);
                if (choice == null) {
                    return this.selectedModes.size() >= this.getMinModes();
                }
                setMode(choice);
                this.selectedModes.add(choice.getId());
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.