mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-21 19:49:34 +08:00
14 lines
291 B
C#
14 lines
291 B
C#
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
/// <summary>
|
|
/// 服务器需要实现此接口
|
|
/// </summary>
|
|
public interface IServer
|
|
{
|
|
/// <summary>
|
|
/// 一个服务器标识秘钥
|
|
/// </summary>
|
|
public string SecretKey { get; }
|
|
}
|
|
}
|