Files
DuckovMods/UIFrame/ModBehaviour.cs
m0_75251201 5d69efbc3f feat: 场景
2025-11-04 17:05:34 +08:00

19 lines
374 B
C#

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