using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.Props.Remote
{
[JsonObject]
public class RemotePlatformInfo : GeneralPropInfo
{
///
/// A ship log fact to reveal when the platform is connected to.
///
[DefaultValue("")] public string reveals = "";
///
/// Disable the structure, leaving only the pedestal.
///
public bool disableStructure;
///
/// Disable the pool that rises when you place a stone.
///
public bool disablePool;
}
}