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

37 lines
No EOL
792 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("up_gr")]
public class UpgradePacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public byte UpgradeType { get; set; }
[PacketIndex(1)]
public InventoryType InventoryType { get; set; }
[PacketIndex(2)]
public byte Slot { get; set; }
[PacketIndex(3)]
public InventoryType? InventoryType2 { get; set; }
[PacketIndex(4)]
public byte? Slot2 { get; set; }
[PacketIndex(5)]
public InventoryType? CellonInventoryType { get; set; }
[PacketIndex(6)]
public byte? CellonSlot { get; set; }
#endregion
}
}