mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00

* 添加GameMode, GameMap; 优化了Plugin和RoomType等 * 添加GameModeLoader,重构GameMode和GameMap * 添加Gaming事件接口 * 添加IGameModeSupported接口 * 为GameMode添加Implement接口 * 为BeforeConnect添加参数
18 lines
413 B
C#
18 lines
413 B
C#
/**
|
||
* 此文件保存Method(方法)的枚举
|
||
*/
|
||
namespace Milimoe.FunGame.Core.Library.Constant
|
||
{
|
||
/// <summary>
|
||
/// 配合 <see cref="InterfaceType"/> <see cref="InterfaceSet"/> 使用,也别忘了修改 <see cref="Api.Utility.Implement"/>
|
||
/// </summary>
|
||
public enum InterfaceMethod
|
||
{
|
||
RemoteServerIP,
|
||
DBConnection,
|
||
GetServerSettings,
|
||
GameModeList,
|
||
GameMapList
|
||
}
|
||
}
|