2024-07-24 15:29:22 +00:00
|
|
|
|
namespace ColdMint.scripts.mod;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>Mod life cycle handler</para>
|
|
|
|
|
/// <para>模组生命周期处理器</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IModLifecycleHandler
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2024-07-28 02:09:44 +00:00
|
|
|
|
/// <para>When the game loads the Mod</para>
|
|
|
|
|
/// <para>当游戏加载Mod时</para>
|
2024-07-24 15:29:22 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
void OnModLoaded();
|
|
|
|
|
}
|