Ben C e19e486f9d
0.13.1 (#102)
* Update PropModule.cs

* Debugging FluidDetector AddVolume

* Catch exceptions if they don't have the DLC

* Update PropBuildManager.cs

* Added the ability to make custom sky boxes

* Move config reset to `ResetConfigs` in Main.cs

* Bump version

Co-authored-by: Nick <nicholasconnors@hotmail.ca>
2022-05-06 19:46:21 -07:00

37 lines
925 B
C#

using NewHorizons.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External.Configs
{
public class StarSystemConfig : Config
{
public bool canEnterViaWarpDrive = true;
public bool startHere = false;
public bool destroyStockPlanets = true;
public string factRequiredForWarp;
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;
}
public StarSystemConfig(Dictionary<string, object> dict) : base(dict) { }
}
}