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

10 lines
No EOL
249 B
C#

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