23 lines
No EOL
425 B
C#
23 lines
No EOL
425 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("sell")]
|
|
public class SellPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(2)]
|
|
public short Data { get; set; }
|
|
|
|
[PacketIndex(3)]
|
|
public byte? Slot { get; set; }
|
|
|
|
[PacketIndex(4)]
|
|
public ushort? Amount { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |