using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Volumes
{
[JsonObject]
public class VanishVolumeInfo : VolumeInfo
{
///
/// Whether the bodies will shrink when they enter this volume or just disappear instantly.
///
[DefaultValue(true)] public bool shrinkBodies = true;
///
/// Whether this volume only affects the player and ship.
///
public bool onlyAffectsPlayerAndShip;
}
}