using Newtonsoft.Json; namespace NewHorizons.External.Modules.Props.Dialogue { [JsonObject] public class RemoteTriggerInfo : GeneralPointPropInfo { /// /// The radius of the remote trigger volume. /// public float radius; /// /// This condition must be met for the remote trigger volume to trigger. /// public string prereqCondition; } }