2022-05-22 00:49:09 -04:00

16 lines
444 B
C#

using NewHorizons.Utility;
using System.ComponentModel;
namespace NewHorizons.External.Modules.VariableSize
{
public class SingularityModule : VariableSizeModule
{
public float Size;
public string PairedSingularity;
public string TargetStarSystem;
public string Type; //BlackHole or WhiteHole
public MVector3 Position;
[DefaultValue(true)] public bool MakeZeroGVolume = true;
}
}