RuneHive-Game
Loading...
Searching...
No Matches
ButtonClickEvent.java
Go to the documentation of this file.
1package com.runehive.game.event.impl;
2
3import com.runehive.game.event.Event;
4
5public class ButtonClickEvent implements Event {
6
7 private final int button;
8
9 public ButtonClickEvent(int button) {
10 this.button = button;
11 }
12
13 public int getButton() {
14 return button;
15 }
16
17}
Definition Event.kt:9