new-horizons/NewHorizons/Utility/NewHorizonBody.cs
2022-05-22 21:30:45 -04:00

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;
}
}