mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
300 B
C#
15 lines
300 B
C#
using NewHorizons.Utility;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NewHorizons.External.Props
|
|
{
|
|
[JsonObject]
|
|
public abstract class GeneralPropInfo : GeneralPointPropInfo
|
|
{
|
|
/// <summary>
|
|
/// Rotation of the object
|
|
/// </summary>
|
|
public MVector3 rotation;
|
|
}
|
|
}
|