RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ClickButtonInteractionEvent.java
1package com.osroyale.content.event.impl;
2
3import com.osroyale.content.event.InteractionEvent;
4
23
24public class ClickButtonInteractionEvent extends InteractionEvent {
25
26 private final int button;
27
28 public ClickButtonInteractionEvent(int button) {
29 super(InteractionType.CLICK_BUTTON);
30 this.button = button;
31 }
32
33 public int getButton() {
34 return button;
35 }
36}