mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
19 lines
396 B
C#
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;
|
|
}
|
|
}
|