using Newtonsoft.Json; using System.ComponentModel; namespace NewHorizons.External.Modules.Volumes.VolumeInfos { [JsonObject] public class DestructionVolumeInfo : VanishVolumeInfo { /// /// The type of death the player will have if they enter this volume. /// [DefaultValue("default")] public DeathType deathType = DeathType.Default; } }