public int toScreen = -1;
public LinkedList<Effect> effects = new LinkedList<>();
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());