Traveller/scripts/mod/IModLifecycleHandler.cs

14 lines
344 B
C#
Raw Permalink Normal View History

2024-12-06 02:23:54 +00:00
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();
}