1package com.osroyale.game.event.impl;
3import com.osroyale.game.event.Event;
4import com.osroyale.game.world.entity.mob.player.Player;
5import com.osroyale.game.world.items.Item;
32public class ItemOnPlayerEvent
implements Event {
34 private final Player other;
36 private final Item used;
38 private final int slot;
40 public ItemOnPlayerEvent(
Player other, Item used,
int slot) {
50 public Item getUsed() {
54 public int getSlot() {