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