aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java
blob: 5275af5566c942b9663fa01aecdfdf445dc721f4 (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;
    }

}