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