mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
28 lines
723 B
C#
28 lines
723 B
C#
namespace NewHorizons.External.Configs
|
|
{
|
|
public class StarSystemConfig
|
|
{
|
|
public bool canEnterViaWarpDrive = true;
|
|
public bool startHere = false;
|
|
public bool destroyStockPlanets = true;
|
|
public string factRequiredForWarp;
|
|
public bool enableTimeLoop = true;
|
|
public NomaiCoordinates coords;
|
|
public SkyboxConfig skybox;
|
|
|
|
public class NomaiCoordinates
|
|
{
|
|
public int[] x;
|
|
public int[] y;
|
|
public int[] z;
|
|
}
|
|
|
|
public class SkyboxConfig
|
|
{
|
|
public string assetBundle = null;
|
|
public string path = null;
|
|
public bool destroyStarField = false;
|
|
}
|
|
}
|
|
}
|