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

14 lines
409 B
C#

using KianaBH.GameServer.Server.Packet.Send.Item;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Recv.Item;
[Opcode(CmdIds.GetEquipmentDataReq)]
public class HandlerGetEquipmentDataReq : Handler
{
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
{
await connection.SendPacket(new PacketGetEquipmentDataRsp(connection.Player!));
}
}