using NewHorizons.External.SerializableData;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External.Modules
{
[JsonObject]
public class CometTailModule
{
///
/// Manually sets the local rotation
///
public MVector3 rotationOverride;
///
/// Inner radius of the comet tail, defaults to match surfaceSize
///
public float? innerRadius;
}
}