mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
19 lines
490 B
C#
19 lines
490 B
C#
using NewHorizons.External.Modules.Audio;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace NewHorizons.External.Modules.Volumes.VolumeInfos
|
|
{
|
|
[JsonObject]
|
|
public class VolumeInfo : GeneralPointPropInfo
|
|
{
|
|
/// <summary>
|
|
/// The radius of this volume.
|
|
/// </summary>
|
|
[DefaultValue(1f)] public float radius = 1f;
|
|
}
|
|
}
|