mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 13:57:59 +01:00
10 lines
154 B
Java
10 lines
154 B
Java
package com.minelittlepony.unicopia.input;
|
|
|
|
public interface IKeyHandler {
|
|
|
|
void addKeybind(IKeyBind bind);
|
|
|
|
default void onKeyInput() {
|
|
|
|
}
|
|
}
|