aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java
diff options
context:
space:
mode:
authoriouter <62897714+iouter@users.noreply.github.com>2022-01-07 12:36:06 +0800
committerGitHub <noreply@github.com>2022-01-07 12:36:06 +0800
commit0834d4b8b45a881f36ed5b295ac0fb38df49fa9a (patch)
tree6fb4a45cf17dd22748148417bc7bb0efb850cea3 /src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java
parentea1439a4195c8f77c45625ea2593a232bf19984e (diff)
parent9b2e050151ad93170e84321d067d1e9d4ded4ba5 (diff)
downloadGT5-Unofficial-0834d4b8b45a881f36ed5b295ac0fb38df49fa9a.tar.gz
GT5-Unofficial-0834d4b8b45a881f36ed5b295ac0fb38df49fa9a.tar.bz2
GT5-Unofficial-0834d4b8b45a881f36ed5b295ac0fb38df49fa9a.zip
Merge branch 'GTNewHorizons:master' into master
Diffstat (limited to 'src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java')
-rw-r--r--src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java b/src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java
deleted file mode 100644
index 473aa827b6..0000000000
--- a/src/Java/gtPlusPlus/core/interfaces/IItemBlueprint.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package gtPlusPlus.core.interfaces;
-
-import net.minecraft.inventory.IInventory;
-import net.minecraft.item.ItemStack;
-
-public interface IItemBlueprint {
-
- /**
- * The inventory size for the blueprint~
- */
- public int INV_SIZE = 9;
-
- /**
- * Meta Compatible function to allow meta items to be blueprints
- * @param stack yourMetaItem
- * @return true if it is a Blueprint
- */
- public boolean isBlueprint(ItemStack stack);
-
- /**
- * Sets the blueprint for this itemstack.
- * @param stack yourMetaItem
- * @return true if blueprint is set successfully
- */
- public boolean setBlueprint(ItemStack stack, IInventory craftingTable, ItemStack output);
-
- /**
- * Sets the name of the recipe/blueprint
- * @param String Blueprint Name
- * @return N/A
- */
- public void setBlueprintName(ItemStack stack, String name);
-
- /**
- * Does this itemstack hold a blueprint?
- * @param stack yourMetaItem
- * @return true if is holding a Blueprint
- */
- public boolean hasBlueprint(ItemStack stack);
-
- /**
- * Gets the recipe held by the item
- * @param stack yourMetaItem
- * @return the blueprints contents
- */
- public ItemStack[] getBlueprint(ItemStack stack);
-
-}