using Newtonsoft.Json;
using System.ComponentModel;
namespace NewHorizons.External.Modules.Props.EchoesOfTheEye
{
[JsonObject]
public class RaftInfo : GeneralPropInfo
{
///
/// Acceleration of the raft. Default acceleration is 5.
///
[DefaultValue(5f)] public float acceleration = 5f;
///
/// Path to the dock this raft will start attached to.
///
public string dockPath;
///
/// Uses the raft model from the dreamworld
///
public bool pristine;
}
}