mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
20 lines
455 B
C#
20 lines
455 B
C#
using KianaBH.GameServer.Game.Player;
|
|
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Avatar;
|
|
|
|
public class PacketDressEquipmentRsp : BasePacket
|
|
{
|
|
public PacketDressEquipmentRsp(EquipmentSlot slot, uint uniqueId) : base(CmdIds.DressEquipmentRsp)
|
|
{
|
|
var proto = new DressEquipmentRsp
|
|
{
|
|
UniqueId = uniqueId,
|
|
Slot = slot
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|