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

26 lines
No EOL
497 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("c_buy")]
public class CBuyPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public long BazaarItemId { get; set; }
[PacketIndex(1)]
public short VNum { get; set; }
[PacketIndex(2)]
public short Amount { get; set; }
[PacketIndex(3)]
public long Price { get; set; }
#endregion
}
}