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

24 lines
395 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 ITransposerRecipe {
public ItemStack getInput();
public ItemStack getOutput();
2013-07-20 18:10:14 +02:00
public FluidStack getLiquid();
2013-04-13 16:35:13 +02:00
public int getEnergy();
public int getChance();
}