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