Added all GUIs. Nothing more to do here. Last step: New GUI. And then: Release! Finally =D

This commit is contained in:
0xSeb
2015-11-03 00:50:37 +01:00
parent 4860972bef
commit 3a73cef7b3
11 changed files with 307 additions and 11 deletions
@@ -13,6 +13,7 @@ import java.util.List;
/**
* Custom Config Gui for Mod Options inside of Minecraft.
*/
@Deprecated
public class ConfigGui extends GuiConfig {
public ConfigGui(GuiScreen parent) {
super(parent, getConfigElements(),
@@ -9,6 +9,7 @@ import java.util.Set;
/**
* A Config Gui Factory which always returns the ConfigGUI-Class. Nothing more to see here, go away!
*/
@Deprecated
public class ConfigGuiFactory implements IModGuiFactory {
@Override
public void initialize(Minecraft minecraftInstance) {
@@ -0,0 +1,6 @@
package de.skate702.craftingkeys.config;
import net.minecraft.client.gui.GuiScreen;
public class GuiConfig extends GuiScreen {
}