Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
mekanism
/
6af0b1abd76ebf0b12c69b8e5c5ef2281c75e720
/
.
/
common
/
thermalexpansion
/
api
/
crafting
/
IFurnaceRecipe.java
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
();
}