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

24 lines
No EOL
478 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("buy")]
public class BuyPacket : ClientPacket
{
[PacketIndex(0)]
public BuyShopType Type { get; set; }
[PacketIndex(1)]
public long OwnerId { get; set; }
[PacketIndex(2)]
public short Slot { get; set; }
[PacketIndex(3)]
public short Amount { get; set; }
}
}