namespace ModTool.Interface
{
///
/// Interface to be implemented by mods that wish to receive OnLoaded and OnUnloaded calls.
/// Non-UnityEngine.Object types that implement this interface will be instantiated when the Mod loads.
///
public interface IModHandler
{
///
/// Called when the Mod is loaded.
///
void OnLoaded();
///
/// Called when the Mod is unloaded.
///
void OnUnloaded();
}
}