aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/plugin/brewing/BrewingRecipe.java
blob: b530dbfce5d151418d863df09c4823cbfa194414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2018, 2019, 2020 shedaniel
 * Licensed under the MIT License (the "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;
    }
    
}