// Token: 0x06000345 RID: 837 RVA: 0x0001016C File Offset: 0x0000E36C
 public void RemoveRadiationZone(global::RadiationZone zone)
 {
     if (this.radiationZones != null && this.radiationZones.Remove(zone))
     {
         zone.RemoveFromRadiation(this);
     }
 }
 // Token: 0x06000344 RID: 836 RVA: 0x00010130 File Offset: 0x0000E330
 public void AddRadiationZone(global::RadiationZone zone)
 {
     if (zone.CanAddToRadiation(this))
     {
         List <global::RadiationZone> list;
         if ((list = this.radiationZones) == null)
         {
             list = (this.radiationZones = new List <global::RadiationZone>());
         }
         list.Add(zone);
     }
 }