Package de.zelosfan.timedstrategy.world

Examples of de.zelosfan.timedstrategy.world.World


    public Game(int mapID) {
        redTeam = new Team(Color.RED, true);
        blueTeam = new Team(Color.BLUE, false);

        world = new World(Main.mapObjectMap.get("map" + mapID));
        Main.gameStateManager.instanceHashMap.put("MapDisplay", new MapDisplay());
        Main.gameStateManager.instanceHashMap.put("UserInterface", new UserInterface());

        Main.gameStateManager.setCurrentGameState(new IngamePlanning(Main.gameStateManager, true));
    }
View Full Code Here

TOP

Related Classes of de.zelosfan.timedstrategy.world.World

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.