Example #1
0
 private void AddGarbageServiceToClient(StructureBaseSO nearByStructure)
 {
     if (facilityType == FacilityType.Garbage && nearByStructure.requireGarbageService)
     {
         if (nearByStructure.AddGarbageFacility(this))
         {
             _customers.Add(nearByStructure);
         }
     }
 }