Rename and clean up MapleKeyBinding

This commit is contained in:
P0nk
2021-09-09 20:58:28 +02:00
parent 065ef632ac
commit 280e28163c
5 changed files with 24 additions and 23 deletions

View File

@@ -21,10 +21,11 @@
*/
package client.keybind;
public class MapleKeyBinding {
private int type, action;
public class KeyBinding {
private final int type;
private final int action;
public MapleKeyBinding(int type, int action) {
public KeyBinding(int type, int action) {
this.type = type;
this.action = action;
}