mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
16 lines
397 B
C#
16 lines
397 B
C#
using Newtonsoft.Json;
|
|
using System.ComponentModel;
|
|
|
|
namespace NewHorizons.External.Modules.Volumes
|
|
{
|
|
[JsonObject]
|
|
public class DestructionVolumeInfo : VanishVolumeInfo
|
|
{
|
|
/// <summary>
|
|
/// The type of death the player will have if they enter this volume.
|
|
/// </summary>
|
|
[DefaultValue("default")] public DeathType deathType = DeathType.Default;
|
|
}
|
|
|
|
}
|