public void update(Game game, City city) { cityName.setText(city.getName()); gold.setNumber(game.getMoney().getAmount()); population.setNumber(city.getTotalPopulation()); population.setCeiling(CityStats.totalHouseCapacity(city)); year.setNumber(game.getYear()); }
private void addPopulationCounter(City city) { population = new Counter("Population", city.getTotalPopulation(), CityStats.totalHouseCapacity(city)); add(population); }