2013-04-13 16:35:13 +02:00
|
|
|
/**
|
|
|
|
* Team CoFH
|
|
|
|
*
|
|
|
|
* Thermal Expansion
|
|
|
|
*/
|
|
|
|
|
|
|
|
package thermalexpansion.api.crafting;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
2013-07-20 18:10:14 +02:00
|
|
|
import net.minecraftforge.fluids.FluidStack;
|
2013-04-13 16:35:13 +02:00
|
|
|
|
|
|
|
public interface ICrucibleRecipe {
|
|
|
|
|
|
|
|
public ItemStack getInput();
|
|
|
|
|
2013-07-20 18:10:14 +02:00
|
|
|
public FluidStack getOutput();
|
2013-04-13 16:35:13 +02:00
|
|
|
|
|
|
|
public int getEnergy();
|
|
|
|
}
|