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