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

15 lines
333 B
C#

using Milimoe.FunGame.Core.Controller;
namespace Milimoe.FunGame.Core.Interface
{
public interface IAddon
{
public string Name { get; }
public string Description { get; }
public string Version { get; }
public string Author { get; }
public bool Load(params object[] objs);
}
}