blob: 0d501105f06f2a5bccf280a25a3d4345b976dd08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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;
}
}
|