Examples of CornCircleSelectOptionEvent


Examples of com.jcloisterzone.event.CornCircleSelectOptionEvent

    public void enter() {
        if (getTile().getCornCircle() == null) {
            next();
            return;
        }
        game.post(new CornCircleSelectOptionEvent(getActivePlayer(), getTile().getPosition()));
    }
View Full Code Here

Examples of com.jcloisterzone.event.CornCircleSelectOptionEvent

    @Override
    public void loadGame(Snapshot snapshot) {
        setEntered(true); //avoid call enter on load phase to this phase switch
        if (cornCircleCap.getCornCircleOption() == null) {
            game.post(new CornCircleSelectOptionEvent(game.getActivePlayer(), getTile().getPosition()));
        } else {
            prepareCornAction();
        }
    }
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.