aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java')
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java b/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java
new file mode 100644
index 000000000..24551d382
--- /dev/null
+++ b/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java
@@ -0,0 +1,23 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
+package me.shedaniel.rei.plugin.brewing;
+
+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