Mekanism-tilera-Edition/common/thermalexpansion/api/crafting/ICrucibleRecipe.java

20 lines
325 B
Java
Raw Normal View History

2013-04-13 16:35:13 +02:00
/**
* Team CoFH
*
* Thermal Expansion
*/
package thermalexpansion.api.crafting;
import net.minecraft.item.ItemStack;
2013-07-20 18:10:14 +02:00
import net.minecraftforge.fluids.FluidStack;
2013-04-13 16:35:13 +02:00
public interface ICrucibleRecipe {
public ItemStack getInput();
2013-07-20 18:10:14 +02:00
public FluidStack getOutput();
2013-04-13 16:35:13 +02:00
public int getEnergy();
}