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;
///
/// This makes the alignment happen if the destination planet is BELOW you rather than above.
///
public bool flipAlignment;
}
}