Package com.jcloisterzone.event

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


    @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

Related Classes of com.jcloisterzone.event.CornCircleSelectOptionEvent

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.