16 lines
No EOL
340 B
C#
16 lines
No EOL
340 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Warehouse.Events;
|
|
|
|
public class AccountWarehouseWithdrawItemEvent : PlayerEvent
|
|
{
|
|
public AccountWarehouseWithdrawItemEvent(short slot, short amount)
|
|
{
|
|
Slot = slot;
|
|
Amount = amount;
|
|
}
|
|
|
|
public short Slot { get; }
|
|
|
|
public short Amount { get; }
|
|
} |