diff options
| author | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
|---|---|---|
| committer | Foghrye4 <foghrye4@gmail.com> | 2017-06-17 08:12:18 +0300 |
| commit | dc3df3edd5843bde0c1335d6a8e460b2c832aa48 (patch) | |
| tree | af13bfeee567f2351e35e1ef176d168fe37c8aac /ihl/nei_integration/LoomRecipeHandler.java | |
| parent | 1da8dcd58647e34c9af94ceeecaeaf3b0d08c48c (diff) | |
full project files
Diffstat (limited to 'ihl/nei_integration/LoomRecipeHandler.java')
| -rw-r--r-- | ihl/nei_integration/LoomRecipeHandler.java | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/ihl/nei_integration/LoomRecipeHandler.java b/ihl/nei_integration/LoomRecipeHandler.java deleted file mode 100644 index d34f505..0000000 --- a/ihl/nei_integration/LoomRecipeHandler.java +++ /dev/null @@ -1,74 +0,0 @@ -package ihl.nei_integration;
-
-import java.awt.Rectangle;
-import java.util.Map;
-
-import ihl.processing.chemistry.LoomGui;
-import ihl.processing.chemistry.LoomTileEntity;
-import ihl.recipes.UniversalRecipeInput;
-import ihl.recipes.UniversalRecipeOutput;
-import net.minecraft.client.gui.inventory.GuiContainer;
-
-
-public class LoomRecipeHandler extends MachineRecipeHandler
-{
- @Override
- public Class <? extends GuiContainer > getGuiClass()
- {
- return LoomGui.class;
- }
-
- @Override
- protected int[] getInputPosX()
- {
- return new int[]{8-5};
- }
-
- @Override
- protected int[] getInputPosY()
- {
- return new int[]{44-11};
- }
-
- @Override
- protected int[] getOutputPosX()
- {
- return new int[]{127-5};
- }
-
- @Override
- public void loadTransferRects()
- {
- this.transferRects.add(new RecipeTransferRect(new Rectangle(35-10, 0, 90, 60), this.getRecipeId(), new Object[0]));
- }
-
- @Override
- protected int[] getOutputPosY()
- {
- return new int[]{44-11};
- }
-
- @Override
- public String getRecipeId()
- {
- return "ihl.loom";
- }
-
- @Override
- public String getGuiTexture()
- {
- return "ihl:textures/gui/GUILoom.png";
- }
-
- @Override
- public String getOverlayIdentifier()
- {
- return "loom";
- }
-
- @Override
- public Map<UniversalRecipeInput, UniversalRecipeOutput> getRecipeList()
- {
- return LoomTileEntity.getRecipes();
- }
-}
|
