15 lines
No EOL
333 B
C#
15 lines
No EOL
333 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Inventory.Event;
|
|
|
|
public class PartnerInventoryTakeOffItemEvent : PlayerEvent
|
|
{
|
|
public PartnerInventoryTakeOffItemEvent(short petId, byte slot)
|
|
{
|
|
PetId = petId;
|
|
Slot = slot;
|
|
}
|
|
|
|
public short PetId { get; }
|
|
public byte Slot { get; }
|
|
} |