using Newtonsoft.Json;
namespace NewHorizons.External.Modules.Props.Remote
{
[JsonObject]
public class RemoteInfo
{
///
/// The unique remote id
///
public string id;
///
/// Icon that the will show on the stone, pedastal of the whiteboard, and pedastal of the platform.
///
public string decalPath;
///
/// Whiteboard that the stones can put text onto
///
public RemoteWhiteboardInfo whiteboard;
///
/// Camera platform that the stones can project to and from
///
public RemotePlatformInfo platform;
///
/// Projection stones
///
public ProjectionStoneInfo[] stones;
}
}