31 lines
No EOL
628 B
C#
31 lines
No EOL
628 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using WingsEmu.Packets.Enums;
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("f_deposit")]
|
|
public class FDepositPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(0)]
|
|
public InventoryType Inventory { get; set; }
|
|
|
|
[PacketIndex(1)]
|
|
public short SourceSlot { get; set; }
|
|
|
|
[PacketIndex(2)]
|
|
public short Amount { get; set; }
|
|
|
|
[PacketIndex(3)]
|
|
public short DestinationSlot { get; set; }
|
|
|
|
[PacketIndex(4)]
|
|
public byte? Unknown { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |