Beispiel #1
0
 public void BuildCityBuilding(int CityBuildingID)
 {
     if (true)//TODO: Check if there is enough space and the resources it requires are there.
     {
         //TODO: Add amount of time it needs to build a building
         CityBuildings.Add(new CityBuilding(this, CityBuildingID));
     }
 }
Beispiel #2
0
 public void AddBuilding(Building building)
 {
     CityBuildings.Add(building);
 }