server-master/srcs/WingsAPI.Game/Inventory/Event/InventoryTakeOffItemEvent.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
286 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Inventory.Event;
public class InventoryTakeOffItemEvent : PlayerEvent
{
public InventoryTakeOffItemEvent(short slot) => Slot = slot;
public short Slot { get; }
public bool ForceToRandomSlot { get; init; }
}