mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
341 B
C#
15 lines
341 B
C#
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Props
|
|
{
|
|
[JsonObject]
|
|
public class RaftInfo : GeneralPointPropInfo
|
|
{
|
|
/// <summary>
|
|
/// Acceleration of the raft. Default acceleration is 5.
|
|
/// </summary>
|
|
[DefaultValue(5f)] public float acceleration = 5f;
|
|
}
|
|
}
|