summaryrefslogtreecommitdiff
path: root/ihl/collector/GlassBoxGui.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-01-27 11:32:28 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-01-27 11:32:28 +0300
commit2db8e30b1d2151fdde5d08a6c06aef55f0c397d2 (patch)
treee8cd0022f3a30a5c952092e0ea4c7ffdafcdf7bb /ihl/collector/GlassBoxGui.java
parentffe23313fb7421b0a1849b420baf708999023f7b (diff)
License, readme and stuff
Diffstat (limited to 'ihl/collector/GlassBoxGui.java')
-rw-r--r--ihl/collector/GlassBoxGui.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/ihl/collector/GlassBoxGui.java b/ihl/collector/GlassBoxGui.java
index 4e09187..2210d06 100644
--- a/ihl/collector/GlassBoxGui.java
+++ b/ihl/collector/GlassBoxGui.java
@@ -5,15 +5,12 @@ import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.util.ResourceLocation;
-import net.minecraft.util.StatCollector;
-
import org.lwjgl.opengl.GL11;
@SideOnly(Side.CLIENT)
public class GlassBoxGui extends GuiContainer {
private static final ResourceLocation background = new ResourceLocation("ihl", "textures/gui/GUIGlassBox.png");
private GlassBoxContainer container;
- private String title = StatCollector.translateToLocal("ihl.gui.charger_ejector");
public GlassBoxGui (GlassBoxContainer container1) {
//the container is instanciated and passed to the superclass for handling
@@ -22,14 +19,6 @@ public class GlassBoxGui extends GuiContainer {
}
@Override
- public void initGui()
- {
- super.initGui();
- int x = (width - xSize) / 2;
- int y = (height - ySize) / 2;
- }
-
- @Override
protected void drawGuiContainerForegroundLayer(int param1, int param2) {
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
this.mc.renderEngine.bindTexture(background);