diff options
author | Alexdoru <57050655+Alexdoru@users.noreply.github.com> | 2024-09-28 13:25:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-28 11:25:01 +0000 |
commit | 86f1765b171f4cc6f163b8027d1330f4e5094e2d (patch) | |
tree | b6e293bd3c976558fc4e4b7190e4d342c2ddc555 /src/main/java/gregtech/api/interfaces | |
parent | 6b1f145f5028f1bc92cf478e5963224e7d94b5cd (diff) | |
download | GT5-Unofficial-86f1765b171f4cc6f163b8027d1330f4e5094e2d.tar.gz GT5-Unofficial-86f1765b171f4cc6f163b8027d1330f4e5094e2d.tar.bz2 GT5-Unofficial-86f1765b171f4cc6f163b8027d1330f4e5094e2d.zip |
Remove more reflection + reorganize mixin accessors packages (#3260)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Co-authored-by: boubou19 <miisterunknown@gmail.com>
Diffstat (limited to 'src/main/java/gregtech/api/interfaces')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/IRecipeMutableAccess.java | 18 |
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(); -} |