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

10 lines
No EOL
262 B
C#

using WingsEmu.DTOs.Items;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Inventory.Event;
public class InventoryItemDeletedEvent : PlayerEvent
{
public ItemInstanceDTO ItemInstance { get; init; }
public int ItemAmount { get; init; }
}