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