aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-12 21:28:36 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-12 21:28:36 +0800
commitdfa3067117e96aa630a88952f0e5d4535bee8bf3 (patch)
tree21550ef69e146b18158be0c49a2a7fcf581bcc90 /src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java
parent936dc5f6dc09ad9a552728f9db06f11b4828bad2 (diff)
downloadRoughlyEnoughItems-dfa3067117e96aa630a88952f0e5d4535bee8bf3.tar.gz
RoughlyEnoughItems-dfa3067117e96aa630a88952f0e5d4535bee8bf3.tar.bz2
RoughlyEnoughItems-dfa3067117e96aa630a88952f0e5d4535bee8bf3.zip
Basic Config
Diffstat (limited to 'src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java')
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java b/src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java
new file mode 100644
index 000000000..b4bcdb39a
--- /dev/null
+++ b/src/main/java/me/shedaniel/rei/plugin/BrewingRecipe.java
@@ -0,0 +1,17 @@
+package me.shedaniel.rei.plugin;
+
+import net.minecraft.item.Item;
+import net.minecraft.recipe.Ingredient;
+
+public class BrewingRecipe {
+
+ public final Item input;
+ public final Ingredient ingredient;
+ public final Item output;
+
+ public BrewingRecipe(Item object_1, Ingredient ingredient_1, Item object_2) {
+ this.input = object_1;
+ this.ingredient = ingredient_1;
+ this.output = object_2;
+ }
+} \ No newline at end of file