using NewHorizons.Utility;
using Newtonsoft.Json;
namespace NewHorizons.External.Props
{
[JsonObject]
public abstract class GeneralPointPropInfo
{
///
/// Position of the object
///
public MVector3 position;
///
/// The relative path from the planet to the parent of this object. Optional (will default to the root sector).
///
public string parentPath;
///
/// Whether the positional and rotational coordinates are relative to parent instead of the root planet object.
///
public bool isRelativeToParent;
///
/// An optional rename of this object
///
public string rename;
}
}