RuneHive-Game
Loading...
Searching...
No Matches
SecondNpcClick.java
Go to the documentation of this file.
1
package
com.runehive.content.event.impl;
2
3
import
com.runehive.game.world.entity.mob.npc.Npc;
4
5
public
class
SecondNpcClick
extends
NpcInteractionEvent
{
6
7
public
SecondNpcClick
(
Npc
npc
) {
8
super(
InteractionType
.
SECOND_CLICK_NPC
,
npc
, 1);
9
}
10
}
com.runehive.content.event.impl.NpcInteractionEvent.NpcInteractionEvent
NpcInteractionEvent(InteractionType type, Npc npc, int opcode)
Definition
NpcInteractionEvent.java:11
com.runehive.content.event.impl.NpcInteractionEvent.npc
final Npc npc
Definition
NpcInteractionEvent.java:8
com.runehive.content.event.impl.SecondNpcClick.SecondNpcClick
SecondNpcClick(Npc npc)
Definition
SecondNpcClick.java:7
com.runehive.game.world.entity.mob.npc.Npc
Represents a non-player character in the in-game world.
Definition
Npc.java:29
com.runehive.content.event.InteractionEvent.InteractionType
Definition
InteractionEvent.java:5
com.runehive.content.event.InteractionEvent.InteractionType.SECOND_CLICK_NPC
SECOND_CLICK_NPC
Definition
InteractionEvent.java:11