Files
KianaBH3/GameServer/Server/Packet/Recv/Collection/HandlerGetCollectionListReq.cs
2025-06-14 11:15:32 +08:00

14 lines
406 B
C#

using KianaBH.GameServer.Server.Packet.Send.Collection;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Recv.Collection;
[Opcode(CmdIds.GetCollectionListReq)]
public class HandlerGetCollectionListReq : Handler
{
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
{
await connection.SendPacket(new PacketGetCollectionListRsp());
}
}