From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- ihl/nei_integration/LeadOvenRecipeHandler.java | 83 -------------------------- 1 file changed, 83 deletions(-) delete mode 100644 ihl/nei_integration/LeadOvenRecipeHandler.java (limited to 'ihl/nei_integration/LeadOvenRecipeHandler.java') diff --git a/ihl/nei_integration/LeadOvenRecipeHandler.java b/ihl/nei_integration/LeadOvenRecipeHandler.java deleted file mode 100644 index 8a7f686..0000000 --- a/ihl/nei_integration/LeadOvenRecipeHandler.java +++ /dev/null @@ -1,83 +0,0 @@ -package ihl.nei_integration; - -import java.awt.Rectangle; -import java.util.Map; - -import ihl.processing.chemistry.LeadOvenGui; -import ihl.processing.chemistry.LeadOvenTileEntity; -import ihl.recipes.UniversalRecipeInput; -import ihl.recipes.UniversalRecipeOutput; -import net.minecraft.client.gui.inventory.GuiContainer; - -public class LeadOvenRecipeHandler extends MachineRecipeHandler { - @Override - public Class getGuiClass() { - return LeadOvenGui.class; - } - - @Override - protected int[] getInputPosX() { - return new int[] { 47 - 5, 65 - 5 }; - } - - @Override - protected int[] getInputPosY() { - return new int[] { 17 - 11 }; - } - - @Override - protected int[] getOutputPosX() { - return new int[] { 112 - 5 }; - } - - @Override - protected int[] getOutputPosY() { - return new int[] { 35 - 11 }; - } - - @Override - protected int[] getFluidOutputPosX() { - return new int[] { 9 - 5 }; - } - - @Override - protected int[] getFluidOutputPosY() { - return new int[] { 53 - 11 }; - } - - @Override - protected int[] getFluidInputPosX() { - return new int[] { 9 - 5 }; - } - - @Override - protected int[] getFluidInputPosY() { - return new int[] { 17 - 11 }; - } - - @Override - public String getRecipeId() { - return "ihl.leadOven"; - } - - @Override - public String getGuiTexture() { - return "ihl:textures/gui/GUILeadOven.png"; - } - - @Override - public String getOverlayIdentifier() { - return "leadOven"; - } - - @Override - public void loadTransferRects() { - this.transferRects.add( - new RecipeTransferRect(new Rectangle(80 - 10, 35 - 10, 22, 15), this.getRecipeId(), new Object[0])); - } - - @Override - public Map getRecipeList() { - return LeadOvenTileEntity.getRecipes(); - } -} -- cgit v1.2.3