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

28 lines
No EOL
572 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("mve")]
public class MvePacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public InventoryType InventoryType { get; set; }
[PacketIndex(1)]
public short Slot { get; set; }
[PacketIndex(2)]
public InventoryType DestinationInventoryType { get; set; }
[PacketIndex(3)]
public short DestinationSlot { get; set; }
#endregion
}
}