Files
DuckovMods/UIFrame/ModBehaviour.cs

17 lines
336 B
C#
Raw Normal View History

using UnityEngine;
namespace UIFrame
{
public class ModBehaviour:Duckov.Modding.ModBehaviour
{
protected override void OnAfterSetup()
{
Debug.Log("OnAfterSetup");
}
protected override void OnBeforeDeactivate()
{
Debug.Log("OnBeforeDeactivate");
}
}
}