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

14 lines
No EOL
297 B
C#

using WingsEmu.Packets;
namespace WingsAPI.Packets.ClientPackets
{
[PacketHeader("isort")]
public class ISortPacket : ClientPacket
{
[PacketIndex(0)]
public byte InventoryType { get; set; }
[PacketIndex(1)]
public bool Confirm { get; set; }
}
}