28 lines
685 B
C#
28 lines
685 B
C#
namespace Fantasy
|
|
{
|
|
// 生成器自动生成,请不要手动编辑,修改请在#ConstValue.xsl里。
|
|
public partial class ConstValue
|
|
{
|
|
/// <summary>
|
|
/// 游戏版本
|
|
/// </summary>
|
|
public const string Version = "v202501";
|
|
/// <summary>
|
|
/// JWT令牌加密密钥
|
|
/// </summary>
|
|
public const string JWTSecret = "6666";
|
|
/// <summary>
|
|
/// 客户端使用的网络类型
|
|
/// </summary>
|
|
public const string Network = "KCP";
|
|
/// <summary>
|
|
/// 客户端发送心跳的时间(毫秒单位)
|
|
/// </summary>
|
|
public const int Heartbeat = 2000;
|
|
/// <summary>
|
|
/// 服务器最大容纳玩家人数
|
|
/// </summary>
|
|
public const int PlayerCount = 5000;
|
|
}
|
|
}
|