mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 23:48:00 +01:00
10 lines
149 B
Java
10 lines
149 B
Java
|
package com.minelittlepony.unicopia;
|
||
|
|
||
|
public interface IKeyBinding {
|
||
|
String getKeyCategory();
|
||
|
|
||
|
String getKeyName();
|
||
|
|
||
|
int getKeyCode();
|
||
|
}
|