RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
NpcClickEvent.java
1package com.osroyale.game.event.impl;
2
3import com.osroyale.game.event.Event;
4import com.osroyale.game.world.entity.mob.npc.Npc;
5
27
28public 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}