BiomesOPlenty/apis/thermalexpansion/api/crafting/IFurnaceRecipe.java
2013-09-13 16:44:22 +10:00

18 lines
259 B
Java

/**
* 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();
}