19 lines
325 B
Java
19 lines
325 B
Java
/**
|
|
* Team CoFH
|
|
*
|
|
* Thermal Expansion
|
|
*/
|
|
|
|
package thermalexpansion.api.crafting;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.fluids.FluidStack;
|
|
|
|
public interface ICrucibleRecipe {
|
|
|
|
public ItemStack getInput();
|
|
|
|
public FluidStack getOutput();
|
|
|
|
public int getEnergy();
|
|
}
|