RuneHive-Game
Loading...
Searching...
No Matches
ClickButtonInteractionEvent.java
Go to the documentation of this file.
1
package
com.runehive.content.event.impl;
2
3
import
com.runehive.content.event.InteractionEvent;
4
5
public
class
ClickButtonInteractionEvent
extends
InteractionEvent
{
6
7
private
final
int
button
;
8
9
public
ClickButtonInteractionEvent
(
int
button
) {
10
super(
InteractionType
.
CLICK_BUTTON
);
11
this.button =
button
;
12
}
13
14
public
int
getButton
() {
15
return
button
;
16
}
17
}
com.runehive.content.event.InteractionEvent.InteractionEvent
InteractionEvent(InteractionType type)
Definition
InteractionEvent.java:41
com.runehive.content.event.impl.ClickButtonInteractionEvent.button
final int button
Definition
ClickButtonInteractionEvent.java:7
com.runehive.content.event.impl.ClickButtonInteractionEvent.getButton
int getButton()
Definition
ClickButtonInteractionEvent.java:14
com.runehive.content.event.impl.ClickButtonInteractionEvent.ClickButtonInteractionEvent
ClickButtonInteractionEvent(int button)
Definition
ClickButtonInteractionEvent.java:9
com.runehive.content.event.InteractionEvent.InteractionType
Definition
InteractionEvent.java:5
com.runehive.content.event.InteractionEvent.InteractionType.CLICK_BUTTON
CLICK_BUTTON
Definition
InteractionEvent.java:24