mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-01 00:35:29 +02:00
9 lines
145 B
Java
9 lines
145 B
Java
package com.minelittlepony.unicopia;
|
|
|
|
public interface KeyBind {
|
|
String getKeyCategory();
|
|
|
|
String getKeyName();
|
|
|
|
int getKeyCode();
|
|
}
|