2023-03-25 13:44:31 -04:00

19 lines
404 B
C#

using Newtonsoft.Json;
namespace NewHorizons.External.Modules.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;
}
}