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