2013-05-03 13:00:44 +00:00
|
|
|
/**
|
|
|
|
* Team CoFH
|
|
|
|
*
|
|
|
|
* Thermal Expansion
|
|
|
|
*/
|
|
|
|
|
|
|
|
package thermalexpansion.api.crafting;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public interface ICrucibleRecipe {
|
|
|
|
|
|
|
|
public ItemStack getInput();
|
|
|
|
|
2013-07-09 03:37:21 +00:00
|
|
|
//public LiquidStack getOutput();
|
2013-05-03 13:00:44 +00:00
|
|
|
|
|
|
|
public int getEnergy();
|
|
|
|
}
|