This commit is contained in:
2025-08-07 09:16:23 +08:00
parent c97bd0ab55
commit 70bfe43a80
34 changed files with 532 additions and 135 deletions

View File

@@ -4,6 +4,11 @@ public class ErrorCode
{
public const uint Successful = 0;
/// <summary>
/// 服务器上线失败
/// </summary>
public const uint OnlineSceneFailed = 1;
/// <summary>
/// 参数有误
/// </summary>
@@ -29,4 +34,9 @@ public class ErrorCode
/// 账号或密码有误
/// </summary>
public const uint ErrAccountOrPass = 11002;
/// <summary>
/// 登录自动注册没有设置地区
/// </summary>
public const uint RegisterNotRegion = 11011;
}