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