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

12 lines
No EOL
338 B
C#

using WingsEmu.DTOs.Items;
using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Helpers;
namespace WingsEmu.Game.Inventory.Event;
public class InventoryPickedUpPlayerItemEvent : PlayerEvent
{
public ItemInstanceDTO ItemInstance { get; init; }
public int Amount { get; init; }
public Location Location { get; init; }
}