From 86f1765b171f4cc6f163b8027d1330f4e5094e2d Mon Sep 17 00:00:00 2001 From: Alexdoru <57050655+Alexdoru@users.noreply.github.com> Date: Sat, 28 Sep 2024 13:25:01 +0200 Subject: Remove more reflection + reorganize mixin accessors packages (#3260) Co-authored-by: Martin Robertz Co-authored-by: boubou19 --- .../gregtech/api/interfaces/IRecipeMutableAccess.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java (limited to 'src/main/java/gregtech/api/interfaces') 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(); -} -- cgit