FunGame-Core/Interface/Base/IAddonController.cs
milimoe 5c89bafffd
完善插件模组系统 (#68)
* 添加GameModeServer

* Addon系列大修改

* RuntimeController添加发送结束游戏反馈的方法

* 将GamingMessageHandler返回值修改为Hashtable

* 添加马甲方法,隐藏委托

* 更新AddonController注释

---------

Co-authored-by: yeziuku <53083103+yeziuku@users.noreply.github.com>
Co-authored-by: yeziuku <yezi@wrss.org>
2023-12-09 01:40:46 +08:00

10 lines
199 B
C#

using Milimoe.FunGame.Core.Controller;
namespace Milimoe.FunGame.Core.Interface.Base
{
public interface IAddonController
{
public AddonController Controller { get; set; }
}
}