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

* 添加GameMode, GameMap; 优化了Plugin和RoomType等 * 添加GameModeLoader,重构GameMode和GameMap * 添加Gaming事件接口 * 添加IGameModeSupported接口 * 为GameMode添加Implement接口 * 为BeforeConnect添加参数
13 lines
293 B
C#
13 lines
293 B
C#
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);
|
|
}
|
|
}
|