RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ObjectClickEvent.java
1package com.osroyale.game.event.impl;
2
3import com.osroyale.game.event.Event;
4import com.osroyale.game.world.object.GameObject;
5
27
28public class ObjectClickEvent implements Event {
29
30 private final int type;
31
32 private final GameObject object;
33
34 public ObjectClickEvent(int type, GameObject object) {
35 this.type = type;
36 this.object = object;
37 }
38
39 public int getType() {
40 return type;
41 }
42
43 public GameObject getObject() {
44 return object;
45 }
46
47}