mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
20 lines
571 B
Java
20 lines
571 B
Java
|
package ellpeck.thingycraft.crafting;
|
||
|
|
||
|
import ellpeck.thingycraft.GemType;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class CrucibleRecipe{
|
||
|
|
||
|
public final ItemStack[] recipeItems;
|
||
|
public final ItemStack recipeOutput;
|
||
|
public final GemType fluidNeeded;
|
||
|
public final int processTimeNeeded;
|
||
|
|
||
|
public CrucibleRecipe(ItemStack[] items, ItemStack output, GemType fluid, int processTimeNeeded){
|
||
|
this.recipeItems = items;
|
||
|
this.recipeOutput = output;
|
||
|
this.fluidNeeded = fluid;
|
||
|
this.processTimeNeeded = processTimeNeeded;
|
||
|
}
|
||
|
}
|