14 lines
331 B
C#
14 lines
331 B
C#
|
namespace ColdMint.scripts.mod;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// <para>Mod life cycle handler</para>
|
|||
|
/// <para>模组生命周期处理器</para>
|
|||
|
/// </summary>
|
|||
|
public interface IModLifecycleHandler
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>When loading the Mod</para>
|
|||
|
/// <para>当加载Mod时</para>
|
|||
|
/// </summary>
|
|||
|
void OnModLoaded();
|
|||
|
}
|