mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-01 08:45:28 +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();
|
|
}
|