mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
14 lines
393 B
C#
14 lines
393 B
C#
using NewHorizons.Utility;
|
|
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;
|
|
public bool MakeZeroGVolume = true;
|
|
}
|
|
}
|