diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-03-21 17:34:07 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-03-21 17:34:07 +0300 |
| commit | 7305ba719930ea3fbf8aa987aeec48b33cdbd82e (patch) | |
| tree | 2307517925d965cd9228c8649013b07639987846 /ihl/nei_integration/ChimneyKneeRecipeHandler.java | |
| parent | 5cb4c6e24033cf337812390d99a6817d24d21eab (diff) | |
Oregen
Diffstat (limited to 'ihl/nei_integration/ChimneyKneeRecipeHandler.java')
| -rw-r--r-- | ihl/nei_integration/ChimneyKneeRecipeHandler.java | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/ihl/nei_integration/ChimneyKneeRecipeHandler.java b/ihl/nei_integration/ChimneyKneeRecipeHandler.java deleted file mode 100644 index d60c251..0000000 --- a/ihl/nei_integration/ChimneyKneeRecipeHandler.java +++ /dev/null @@ -1,73 +0,0 @@ -package ihl.nei_integration;
-
-import java.util.Map;
-
-import ihl.processing.chemistry.GoldChimneyKneeTileEntity;
-import ihl.recipes.UniversalRecipeInput;
-import ihl.recipes.UniversalRecipeOutput;
-import net.minecraft.client.gui.inventory.GuiContainer;
-
-
-public class ChimneyKneeRecipeHandler extends MachineRecipeHandler
-{
- @Override
- public Class <? extends GuiContainer > getGuiClass()
- {
- return null;
- }
-
- @Override
- protected int[] getInputPosX()
- {
- return new int[]{6-5,6-5,106-5};
- }
-
- @Override
- protected int[] getInputPosY()
- {
- return new int[]{33-11,53-11};
- }
-
- @Override
- protected int[] getOutputPosX()
- {
- return new int[]{96-5};
- }
-
- @Override
- protected int[] getOutputPosY()
- {
- return new int[]{35-11,31-11};
- }
-
-
- @Override
- public String getRecipeName()
- {
- return "Chimney knee";
- }
-
- @Override
- public String getRecipeId()
- {
- return "ihl.chimneyKnee";
- }
-
- @Override
- public String getGuiTexture()
- {
- return "ihl:textures/gui/GUIChimneyKneeNEI.png";
- }
-
- @Override
- public String getOverlayIdentifier()
- {
- return "chimneyKnee";
- }
-
- @Override
- public Map<UniversalRecipeInput, UniversalRecipeOutput> getRecipeList()
- {
- return GoldChimneyKneeTileEntity.getRecipes();
- }
-}
|
