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

11 lines
No EOL
289 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Helpers;
namespace WingsEmu.Game.Inventory.Event;
public class InventoryPickedUpItemEvent : PlayerEvent
{
public int ItemVnum { get; init; }
public int Amount { get; init; }
public Location Location { get; init; }
}