房间创建和进入相关逻辑和协议

This commit is contained in:
2025-08-27 00:04:40 +08:00
parent 7325e268ce
commit f6d85a1e0a
45 changed files with 1246 additions and 729 deletions

View File

@@ -49,4 +49,24 @@ public class ErrorCode
/// 没回复前不能再发消息
/// </summary>
public const uint MailNotReply = 12021;
/// <summary>
/// 创建房间失败,不在地图中
/// </summary>
public const uint MapCreateRoomNotEnter = 13001;
/// <summary>
/// 创建房间失败,房间数量超限
/// </summary>
public const uint MapCreateRoomMax = 13002;
/// <summary>
/// 房间id 错误
/// </summary>
public const uint MapRoomIdError = 13003;
/// <summary>
/// 已在房间,不能加入另一个
/// </summary>
public const uint MapRoomHave = 13004;
}