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)); } }
public void AddBuilding(Building building) { CityBuildings.Add(building); }