Traveller/scripts/mod/IModLifecycleHandler.cs
Cold-Mint f4660fe581
Adjust Mod timing, temporarily disable Mod.
调整Mod时序,暂时禁用Mod。
2024-07-28 10:09:44 +08:00

14 lines
344 B
C#

namespace ColdMint.scripts.mod;
/// <summary>
/// <para>Mod life cycle handler</para>
/// <para>模组生命周期处理器</para>
/// </summary>
public interface IModLifecycleHandler
{
/// <summary>
/// <para>When the game loads the Mod</para>
/// <para>当游戏加载Mod时</para>
/// </summary>
void OnModLoaded();
}