namespace Milimoe.FunGame.Core.Interface { /// /// 服务器需要实现此接口 /// public interface IServer { public string[] GameModeList { get; } public string[] GameMapList { get; } } }