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

18 lines
342 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Chat;
public class PacketGetChatgroupListRsp : BasePacket
{
public PacketGetChatgroupListRsp() : base(CmdIds.GetChatgroupListRsp)
{
var proto = new GetChatgroupListRsp
{
};
SetData(proto);
}
}