mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
26 lines
556 B
C#
26 lines
556 B
C#
#region
|
|
|
|
using NewHorizons.External.Configs;
|
|
using OWML.Common;
|
|
using UnityEngine;
|
|
|
|
#endregion
|
|
|
|
namespace NewHorizons.Utility
|
|
{
|
|
public class NewHorizonsBody
|
|
{
|
|
public NewHorizonsBody(PlanetConfig config, IModBehaviour mod, string relativePath = null)
|
|
{
|
|
Config = config;
|
|
Mod = mod;
|
|
RelativePath = relativePath;
|
|
}
|
|
|
|
public PlanetConfig Config;
|
|
public IModBehaviour Mod;
|
|
public string RelativePath;
|
|
|
|
public GameObject Object;
|
|
}
|
|
} |