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