BiomesOPlenty/apis/thermalexpansion/api/crafting/IFurnaceRecipe.java

19 lines
259 B
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
/**
* 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();
}