new-horizons/NewHorizons/External/Props/EntryLocationInfo.cs

19 lines
396 B
C#

using Newtonsoft.Json;
namespace NewHorizons.External.Props
{
[JsonObject]
public class EntryLocationInfo : GeneralPointPropInfo
{
/// <summary>
/// Whether this location is cloaked
/// </summary>
public bool cloaked;
/// <summary>
/// ID of the entry this location relates to
/// </summary>
public string id;
}
}