mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
27 lines
642 B
C#
27 lines
642 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 string factRequiredForWarp;
|
|
public NomaiCoordinates coords;
|
|
|
|
public class NomaiCoordinates
|
|
{
|
|
public int[] x;
|
|
public int[] y;
|
|
public int[] z;
|
|
}
|
|
|
|
public StarSystemConfig(Dictionary<string, object> dict) : base(dict) { }
|
|
}
|
|
}
|