Added keybinding to toggle if hud is shown

This commit is contained in:
Gig 2015-06-14 20:53:05 +01:00
parent 59d4199260
commit 98c8f43b84
6 changed files with 118 additions and 48 deletions

View file

@ -0,0 +1,6 @@
package techreborn.lib;
public enum Key {
UNKNOWN, CONFIG;
}

View file

@ -8,4 +8,10 @@ public class ModInfo {
public static final String SERVER_PROXY_CLASS = "techreborn.proxies.CommonProxy";
public static final String CLIENT_PROXY_CLASS = "techreborn.proxies.ClientProxy";
public static final String GUI_FACTORY_CLASS = "techreborn.config.TechRebornGUIFactory";
public static final class Keys
{
public static final String CATEGORY = "keys.techreborn.category";
public static final String CONFIG = "keys.techreborn.config";
}
}