RuneHive-Game
Loading...
Searching...
No Matches
SecondNpcOptionEvent.kt
Go to the documentation of this file.
1package org.jire.runehiveps.event.npc
2
3import com.runehive.content.event.impl.SecondNpcClick
4import com.runehive.game.world.entity.mob.npc.Npc
5
6/**
7 * @author Jire
8 */
9class SecondNpcOptionEvent(slot: Int) : NpcOptionEvent(slot, 1) {
10
11 override fun createInteractionEvent(npc: Npc) = SecondNpcClick(npc)
12
13}