milimoe c51b7c50fa
统一命名 并禁止GameModuleServer调用DataRequest (#81)
* 统一命名 并禁止GameModuleServer调用DataRequest

* 添加了GameModuleDepend (依赖集合) 用于整合Maps Characters Items Skills
2024-08-01 20:40:25 +08:00

12 lines
258 B
C#

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