using NewHorizons.External.Volumes; using Newtonsoft.Json; namespace NewHorizons.External.Modules { [JsonObject] public class ProbeModule { /// /// Add probe destruction volumes to this planet. These will delete your probe. /// public VolumeInfo[] destructionVolumes; /// /// Add probe safety volumes to this planet. These will stop the probe destruction volumes from working. /// public VolumeInfo[] safetyVolumes; } }