Package com.jcloisterzone.action

Examples of com.jcloisterzone.action.LittleBuildingAction


    }

    @Override
    public void prepareActions(List<PlayerAction<?>> actions, Set<FeaturePointer> followerOptions) {
        Player player = game.getActivePlayer();
        LittleBuildingAction action = new LittleBuildingAction();
        for (LittleBuilding lb : LittleBuilding.values()) {
            if (getBuildingsCount(player, lb) > 0) {
                action.add(lb);
            }
        }
        if (!action.isEmpty()) {
            actions.add(action);
        }
    }
View Full Code Here

TOP

Related Classes of com.jcloisterzone.action.LittleBuildingAction

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.