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

20 lines
549 B
C#

using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.WarpPad
{
[JsonObject]
public class NomaiWarpTransmitterInfo : NomaiWarpPadInfo
{
/// <summary>
/// In degrees. Gives a margin of error for alignments.
/// </summary>
[DefaultValue(5f)] public float alignmentWindow = 5f;
/// <summary>
/// Is this transmitter upsidedown? Means alignment will be checked facing the other way.
/// </summary>
public bool upsideDown = false;
}
}