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

19 lines
No EOL
389 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("withdraw")]
public class WithdrawPacket : ClientPacket
{
[PacketIndex(0)]
public short Slot { get; set; }
[PacketIndex(1)]
public short Amount { get; set; }
[PacketIndex(2)]
public bool PetBackpack { get; set; }
}
}