32public class ItemOnItemEvent
implements Event {
34 private final Item used;
35 private final int usedSlot;
36 private final Item with;
37 private final int withSlot;
39 public ItemOnItemEvent(Item used,
int usedSlot, Item with,
int withSlot) {
41 this.usedSlot = usedSlot;
43 this.withSlot = withSlot;
46 public Item getUsed() {
50 public int getUsedSlot() {
54 public Item getWith() {
58 public int getWithSlot() {