RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ItemClickEvent.java
1package com.osroyale.game.event.impl;
2
3import com.osroyale.game.event.Event;
4import com.osroyale.game.world.items.Item;
5
29
30public class ItemClickEvent implements Event {
31
32 private final int type;
33
34 private final Item item;
35
36 private final int slot;
37
38 public ItemClickEvent(int type, Item item, int slot) {
39 this.type = type;
40 this.item = item;
41 this.slot = slot;
42 }
43
44 public int getType() {
45 return type;
46 }
47
48 public Item getItem() {
49 return item;
50 }
51
52 public int getSlot() {
53 return slot;
54 }
55
56}