提交进入地图和创建房间相关逻辑和协议

This commit is contained in:
2025-08-27 18:05:55 +08:00
parent f6d85a1e0a
commit 94af0e5ddb
31 changed files with 562 additions and 68 deletions

View File

@@ -69,4 +69,19 @@ public class ErrorCode
/// 已在房间,不能加入另一个
/// </summary>
public const uint MapRoomHave = 13004;
/// <summary>
/// 加入服务失败
/// </summary>
public const uint MapRoomEnterError = 13005;
/// <summary>
/// 重复加入失败
/// </summary>
public const uint MapRoomEnterRepeated = 13006;
/// <summary>
/// 地图id错误
/// </summary>
public const uint MapIdError = 13007;
}