public StorageBuilding(BuildingType buildingType, Pos location, Village village) : base(buildingType, location, village) { maxCapacity = buildingType.Capacity(); UsedCapacity = 0; storedGoods = new Dictionary <ResourceType, int>(); allowedGoods = new List <ResourceType>(); }