mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00

* 添加GameModeServer * Addon系列大修改 * RuntimeController添加发送结束游戏反馈的方法 * 将GamingMessageHandler返回值修改为Hashtable * 添加马甲方法,隐藏委托 * 更新AddonController注释 --------- Co-authored-by: yeziuku <53083103+yeziuku@users.noreply.github.com> Co-authored-by: yeziuku <yezi@wrss.org>
15 lines
333 B
C#
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);
|
|
}
|
|
}
|