server-master/srcs/WingsAPI.Packets/ClientPackets/QSetPacket.cs
2026-02-10 18:21:30 +01:00

25 lines
No EOL
561 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("qset")]
public class QSetPacket : ClientPacket
{
[PacketIndex(0)]
public QsetPacketType Type { get; set; }
[PacketIndex(1)]
public short QuicklistTab { get; set; }
[PacketIndex(2)]
public short QuicklistSlot { get; set; }
[PacketIndex(3)]
public short? DestinationType { get; set; }
[PacketIndex(4)]
public short? DestinationSlotOrVnum { get; set; }
}
}