RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SecondObjectClick.java
1
package
com.osroyale.content.event.impl;
2
3
import
com.osroyale.content.event.InteractionEvent;
4
import
com.osroyale.game.world.object.GameObject;
5
23
24
public
class
SecondObjectClick
extends
ObjectInteractionEvent {
25
26
public
SecondObjectClick(
GameObject
object
) {
27
super(
InteractionEvent
.
InteractionType
.SECOND_CLICK_OBJECT,
object
, 1);
28
}
29
30
}
com.osroyale.content.event.InteractionEvent
Definition
InteractionEvent.java:34
com.osroyale.content.event.InteractionEvent.InteractionType
Definition
InteractionEvent.java:36
com.osroyale.game.world.object.GameObject
Definition
GameObject.java:13