blob: 1b82e47d202fccc405b13a7f0cad6d7af8e2d70f [file] [log] [blame] [raw]
/**
* Team CoFH
*
* Thermal Expansion
*/
package thermalexpansion.api.crafting;
import net.minecraft.item.ItemStack;
import net.minecraftforge.liquids.LiquidStack;
public interface ICrucibleRecipe {
public ItemStack getInput();
public LiquidStack getOutput();
public int getEnergy();
}