blob: 800e9613c87567fbd7a94f307651abef69f657da [file] [log] [blame] [raw]
/**
* Team CoFH
*
* Thermal Expansion
*/
package thermalexpansion.api.crafting;
import net.minecraft.item.ItemStack;
public interface IFurnaceRecipe {
public ItemStack getInput();
public ItemStack getOutput();
public int getEnergy();
}