mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
27 lines
657 B
C#
27 lines
657 B
C#
using NewHorizons.External.Configs;
|
|
using NewHorizons.External.Modules;
|
|
using OWML.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
|
|
namespace NewHorizons.Utility
|
|
{
|
|
public class NewHorizonsSystem
|
|
{
|
|
public string UniqueID;
|
|
public SpawnModule Spawn = null;
|
|
public SpawnPoint SpawnPoint = null;
|
|
public StarSystemConfig Config;
|
|
public IModBehaviour Mod;
|
|
|
|
public NewHorizonsSystem(string uniqueID, StarSystemConfig config, IModBehaviour mod)
|
|
{
|
|
UniqueID = uniqueID;
|
|
Config = config;
|
|
Mod = mod;
|
|
}
|
|
}
|
|
}
|