aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/gui
diff options
context:
space:
mode:
authorMuramasa <haydenkilloh@gmail.com>2016-06-01 06:34:33 +0100
committerMuramasa <haydenkilloh@gmail.com>2016-06-01 06:34:33 +0100
commit237e5e682df387e5b99894eef8f8b34e763a5615 (patch)
treee5cec8a7dcd1d3e173764821945d442c4a6c68e5 /src/main/java/gregtech/api/gui
parentcddca6e2beb941b65e8bcda6ae8259371ff4e01b (diff)
downloadGT5-Unofficial-237e5e682df387e5b99894eef8f8b34e763a5615.tar.gz
GT5-Unofficial-237e5e682df387e5b99894eef8f8b34e763a5615.tar.bz2
GT5-Unofficial-237e5e682df387e5b99894eef8f8b34e763a5615.zip
Possibly final commit
Diffstat (limited to 'src/main/java/gregtech/api/gui')
-rw-r--r--src/main/java/gregtech/api/gui/GT_Container_TurboHatch.java16
-rw-r--r--src/main/java/gregtech/api/gui/GT_GUIContainer_TurboHatch.java27
2 files changed, 0 insertions, 43 deletions
diff --git a/src/main/java/gregtech/api/gui/GT_Container_TurboHatch.java b/src/main/java/gregtech/api/gui/GT_Container_TurboHatch.java
deleted file mode 100644
index 720c2bfdd6..0000000000
--- a/src/main/java/gregtech/api/gui/GT_Container_TurboHatch.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package gregtech.api.gui;
-
-import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
-import net.minecraft.entity.player.InventoryPlayer;
-
-public class GT_Container_TurboHatch extends GT_ContainerMetaTile_Machine {
-
- public GT_Container_TurboHatch(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
- super(aInventoryPlayer, aTileEntity);
- }
-
- @Override
- public void addSlots(InventoryPlayer aInventoryPlayer) {
- addSlotToContainer(new GT_Slot_Holo(mTileEntity, 0, 80, 35, false, false, 1));
- }
-} \ No newline at end of file
diff --git a/src/main/java/gregtech/api/gui/GT_GUIContainer_TurboHatch.java b/src/main/java/gregtech/api/gui/GT_GUIContainer_TurboHatch.java
deleted file mode 100644
index 82158fcb40..0000000000
--- a/src/main/java/gregtech/api/gui/GT_GUIContainer_TurboHatch.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package gregtech.api.gui;
-
-import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
-import net.minecraft.entity.player.InventoryPlayer;
-
-import static gregtech.api.enums.GT_Values.RES_PATH_GUI;
-
-public class GT_GUIContainer_TurboHatch extends GT_GUIContainerMetaTile_Machine {
-
- public GT_GUIContainer_TurboHatch(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
- super(new GT_Container_TurboHatch(aInventoryPlayer, aTileEntity), RES_PATH_GUI + "Maintenance.png");
- }
-
- @Override
- protected void drawGuiContainerForegroundLayer(int par1, int par2) {
- fontRendererObj.drawString("Turbo Hatch", 8, 4, 4210752);
- fontRendererObj.drawString("Insert small turbine rotor.", 8, 12, 4210752);
- }
-
- @Override
- protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3) {
- super.drawGuiContainerBackgroundLayer(par1, par2, par3);
- int x = (width - xSize) / 2;
- int y = (height - ySize) / 2;
- drawTexturedModalRect(x, y, 0, 0, xSize, ySize);
- }
-}