2022-05-17 19:41:45 -04:00

15 lines
515 B
C#

namespace NewHorizons.External.Modules.VariableSize
{
public class RingModule : VariableSizeModule
{
public float InnerRadius { get; set; }
public float OuterRadius { get; set; }
public float Inclination { get; set; }
public float LongitudeOfAscendingNode { get; set; }
public string Texture { get; set; }
public bool Unlit { get; set; } = false;
public float RotationSpeed { get; set; } = 0f;
public string FluidType { get; set; }
}
}