RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
ClickButtonInteractionEvent.java
1
package
com.osroyale.content.event.impl;
2
3
import
com.osroyale.content.event.InteractionEvent;
4
23
24
public
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
}