mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
20 lines
423 B
C#
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);
|
|
}
|
|
}
|