mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
12 lines
256 B
C#
12 lines
256 B
C#
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
/// <summary>
|
|
/// 服务器需要实现此接口
|
|
/// </summary>
|
|
public interface IServer
|
|
{
|
|
public string[] GameModeList { get; }
|
|
public string[] GameMapList { get; }
|
|
}
|
|
}
|