mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
19 lines
439 B
C#
19 lines
439 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Modules.Props.Remote
|
|
{
|
|
[JsonObject]
|
|
public class RemoteWhiteboardInfo : GeneralPropInfo
|
|
{
|
|
/// <summary>
|
|
/// The text for each stone
|
|
/// </summary>
|
|
public SharedNomaiTextInfo[] nomaiText;
|
|
|
|
/// <summary>
|
|
/// Disable the wall, leaving only the pedestal and text.
|
|
/// </summary>
|
|
public bool disableWall;
|
|
}
|
|
}
|