new-horizons/NewHorizons/External/Modules/Volumes/ChangeStarSystemVolumeInfo.cs
2023-03-25 13:44:31 -04:00

15 lines
377 B
C#

using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.Volumes
{
[JsonObject]
public class ChangeStarSystemVolumeInfo : VolumeInfo
{
/// <summary>
/// The star system that entering this volume will send you to.
/// </summary>
[DefaultValue("SolarSystem")] public string targetStarSystem;
}
}