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