Rivoreo Source Code Repositories
src.rivoreo.one
/
minecraft
/
mekanism
/
83bca26455e6a75fa45200eb4c1ae5416a216392
/
.
/
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
();
}