aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java b/src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java
deleted file mode 100644
index 5c6d931d5a..0000000000
--- a/src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package gregtech.api.interfaces;
-
-import net.minecraft.item.ItemStack;
-
-/**
- * Mixed-in interface for recipe classes in Forge and Vanilla that allows mutating the input and output items.
- */
-public interface IRecipeMutableAccess {
-
- /** @return Gets the current output item of the recipe */
- ItemStack gt5u$getRecipeOutputItem();
-
- /** Sets a new output item on the recipe */
- void gt5u$setRecipeOutputItem(ItemStack newItem);
-
- /** @return The raw list or array of recipe inputs, the exact type depends on the underlying recipe type. */
- Object gt5u$getRecipeInputs();
-}