using Newtonsoft.Json;
namespace NewHorizons.External.Modules.Props.Remote
{
[JsonObject]
public class RemoteWhiteboardInfo : GeneralPropInfo
{
///
/// The text for each stone
///
public SharedNomaiTextInfo[] nomaiText;
///
/// Disable the wall, leaving only the pedestal and text.
///
public bool disableWall;
}
}