1package com.osroyale.content.event.impl;
3import com.osroyale.content.event.InteractionEvent;
4import com.osroyale.game.world.items.Item;
5import com.osroyale.game.world.object.GameObject;
30public class ItemOnObjectInteractionEvent
extends InteractionEvent {
32 private final Item item;
35 public ItemOnObjectInteractionEvent(Item item,
GameObject object) {
36 super(InteractionType.ITEM_ON_OBJECT);
41 public Item getItem() {