RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ObjectClickEvent.java
1
package
com.osroyale.game.event.impl;
2
3
import
com.osroyale.game.event.Event;
4
import
com.osroyale.game.world.object.GameObject;
5
27
28
public
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
}
com.osroyale.game.event.Event
Definition
Event.java:8
com.osroyale.game.world.object.GameObject
Definition
GameObject.java:13