Moved to RebornCore

This commit is contained in:
modmuss50 2015-11-08 12:15:45 +00:00
parent 50a830a101
commit 8abf6e5282
313 changed files with 3987 additions and 16508 deletions

View file

@ -2,8 +2,8 @@ package techreborn.client.keybindings;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.InputEvent;
import techreborn.Core;
import techreborn.lib.Key;
import techreborn.util.LogHelper;
public class KeyInputEventHandler {
private static Key getPressedKeybinding() {
@ -16,7 +16,7 @@ public class KeyInputEventHandler {
@SubscribeEvent
public void handleKeyInputEvent(InputEvent.KeyInputEvent event) {
LogHelper.info(getPressedKeybinding());
Core.logHelper.info(getPressedKeybinding());
}
}