ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/crafting/CrucibleRecipe.java

20 lines
594 B
Java
Raw Normal View History

2015-01-05 22:14:01 +01:00
package ellpeck.someprettytechystuff.crafting;
2015-01-05 22:14:01 +01:00
import ellpeck.someprettytechystuff.util.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;
}
}