mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
34 lines
842 B
C#
34 lines
842 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Remote
|
|
{
|
|
[JsonObject]
|
|
public class RemoteInfo
|
|
{
|
|
/// <summary>
|
|
/// The unique remote id
|
|
/// </summary>
|
|
public string id;
|
|
|
|
/// <summary>
|
|
/// Icon that the will show on the stone, pedastal of the whiteboard, and pedastal of the platform.
|
|
/// </summary>
|
|
public string decalPath;
|
|
|
|
/// <summary>
|
|
/// Whiteboard that the stones can put text onto
|
|
/// </summary>
|
|
public RemoteWhiteboardInfo whiteboard;
|
|
|
|
/// <summary>
|
|
/// Camera platform that the stones can project to and from
|
|
/// </summary>
|
|
public PlatformInfo platform;
|
|
|
|
/// <summary>
|
|
/// Projection stones
|
|
/// </summary>
|
|
public StoneInfo[] stones;
|
|
}
|
|
}
|