mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00

* 添加GameMode, GameMap; 优化了Plugin和RoomType等 * 添加GameModeLoader,重构GameMode和GameMap * 添加Gaming事件接口 * 添加IGameModeSupported接口 * 为GameMode添加Implement接口 * 为BeforeConnect添加参数
12 lines
321 B
C#
12 lines
321 B
C#
namespace Milimoe.FunGame.Core.Interface
|
||
{
|
||
/// <summary>
|
||
/// 服务端和客户端都应该实现这个接口,用于初始化支持的Mod列表
|
||
/// </summary>
|
||
public interface IGameModeSupported
|
||
{
|
||
public string[] GameModeList { get; }
|
||
public string[] GameMapList { get; }
|
||
}
|
||
}
|