blob: b38f2b6a8e4f9079df7e33b998a49904a573c6e2 (
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;
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;
}
}
|