new-horizons/NewHorizons/Utility/NewHorizonBody.cs
2022-05-14 09:44:06 -04:00

24 lines
541 B
C#

using NewHorizons.External;
using OWML.Common;
using UnityEngine;
using NewHorizons.External.Configs;
namespace NewHorizons.Utility
{
public class NewHorizonsBody
{
public NewHorizonsBody(IPlanetConfig config, IModBehaviour mod, string relativePath = null)
{
Config = config;
Mod = mod;
RelativePath = relativePath;
}
public IPlanetConfig Config;
public IModBehaviour Mod;
public string RelativePath;
public GameObject Object;
}
}