new-horizons/NewHorizons/External/Modules/WarpPad/NomaiWarpPadReceiverInfo.cs
2023-03-22 00:07:53 -04:00

25 lines
722 B
C#

using Newtonsoft.Json;
namespace NewHorizons.External.Modules.WarpPad
{
[JsonObject]
public class NomaiWarpReceiverInfo : NomaiWarpPadInfo
{
/// <summary>
/// The body the transmitter must be aligned with to warp to this receiver.
/// Defaults to the body the receiver is on.
/// </summary>
public string alignmentTargetBody;
/// <summary>
/// Will create a modern Nomai computer linked to this receiver.
/// </summary>
public NomaiWarpComputerLoggerInfo computer;
/// <summary>
/// Set to true if you want to include Nomai ruin details around the warp pad.
/// </summary>
public bool detailed;
}
}