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

14 lines
447 B
C#

using NewHorizons.Utility;
namespace NewHorizons.External.Modules.VariableSize
{
public class StarModule : VariableSizeModule
{
public float Size { get; set; } = 2000f;
public MColor Tint { get; set; }
public MColor SolarFlareTint { get; set; }
public MColor LightTint { get; set; }
public float SolarLuminosity { get; set; } = 1f;
public bool HasAtmosphere { get; set; } = true;
}
}