From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../ElectrolysisBathRecipeHandler.java | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100644 ihl/nei_integration/ElectrolysisBathRecipeHandler.java (limited to 'ihl/nei_integration/ElectrolysisBathRecipeHandler.java') diff --git a/ihl/nei_integration/ElectrolysisBathRecipeHandler.java b/ihl/nei_integration/ElectrolysisBathRecipeHandler.java deleted file mode 100644 index bf91f03..0000000 --- a/ihl/nei_integration/ElectrolysisBathRecipeHandler.java +++ /dev/null @@ -1,74 +0,0 @@ -package ihl.nei_integration; - -import java.awt.Rectangle; -import java.util.Map; - -import ihl.processing.chemistry.ElectrolysisBathGui; -import ihl.processing.chemistry.ElectrolysisBathTileEntity; -import ihl.recipes.UniversalRecipeInput; -import ihl.recipes.UniversalRecipeOutput; -import net.minecraft.client.gui.inventory.GuiContainer; - - -public class ElectrolysisBathRecipeHandler extends MachineRecipeHandler -{ - @Override - public Class getGuiClass() - { - return ElectrolysisBathGui.class; - } - - @Override - protected int[] getInputPosX() - { - return new int[]{6-5,98-5,78-5}; - } - - @Override - protected int[] getInputPosY() - { - return new int[]{16-11}; - } - - @Override - protected int[] getOutputPosX() - { - return new int[]{6-5,87-5,106-5}; - } - - @Override - protected int[] getOutputPosY() - { - return new int[]{52-11,51-11,15-11}; - } - - @Override - public String getRecipeId() - { - return "ihl.electrolysisBath"; - } - - @Override - public String getGuiTexture() - { - return "ihl:textures/gui/GUIElectrolysisBath.png"; - } - - @Override - public String getOverlayIdentifier() - { - return "electrolysisBath"; - } - - @Override - public void loadTransferRects() - { - this.transferRects.add(new RecipeTransferRect(new Rectangle(115-5,10-10, 172-115, 72), this.getRecipeId(), new Object[0])); - } - - @Override - public Map getRecipeList() - { - return ElectrolysisBathTileEntity.getRecipes(); - } -} -- cgit v1.2.3