mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00

* 添加GameMode, GameMap; 优化了Plugin和RoomType等 * 添加GameModeLoader,重构GameMode和GameMap * 添加Gaming事件接口 * 添加IGameModeSupported接口 * 为GameMode添加Implement接口 * 为BeforeConnect添加参数
18 lines
499 B
C#
18 lines
499 B
C#
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
/// <summary>
|
|
/// 这是最基本的接口,要求客户端实现
|
|
/// </summary>
|
|
public interface IClient
|
|
{
|
|
public string FunGameIcon { get; }
|
|
public string FunGameBackGround { get; }
|
|
public string FunGameMainMusic { get; }
|
|
public string FunGameMusic1 { get; }
|
|
public string FunGameMusic2 { get; }
|
|
public string FunGameMusic3 { get; }
|
|
|
|
public string RemoteServerIP();
|
|
}
|
|
}
|