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