Files
KianaBH3/GameServer/Server/Packet/Send/Chat/PacketEnterWorldChatroomRsp.cs
2025-06-14 11:15:32 +08:00

20 lines
423 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Chat;
public class PacketEnterWorldChatroomRsp : BasePacket
{
public PacketEnterWorldChatroomRsp() : base(CmdIds.EnterWorldChatroomRsp)
{
// TODO: Hardcoded
var proto = new EnterWorldChatroomRsp
{
ChatroomId = 1,
PlayerNum = 69
};
SetData(proto);
}
}