mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
19 lines
573 B
Java
19 lines
573 B
Java
package ellpeck.gemification.crafting;
|
|
|
|
import ellpeck.gemification.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;
|
|
}
|
|
}
|