mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-03-06 06:30:26 +00:00
14 lines
378 B
C#
14 lines
378 B
C#
namespace Milimoe.FunGame.Core.Interface.Base.Addons
|
|
{
|
|
/// <summary>
|
|
/// 实现此接口的插件/模组才能被热更新模式加载
|
|
/// </summary>
|
|
public interface IHotReloadAware
|
|
{
|
|
/// <summary>
|
|
/// 在卸载前调用,自行做一些清理,否则卸载不安全
|
|
/// </summary>
|
|
public void OnBeforeUnload();
|
|
}
|
|
}
|