2013-05-03 13:00:44 +00:00
|
|
|
/**
|
|
|
|
* Team CoFH
|
|
|
|
*
|
|
|
|
* Thermal Expansion
|
|
|
|
*/
|
|
|
|
|
|
|
|
package thermalexpansion.api.crafting;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public interface ITransposerRecipe {
|
|
|
|
|
|
|
|
public ItemStack getInput();
|
|
|
|
|
|
|
|
public ItemStack getOutput();
|
|
|
|
|
2013-07-09 03:37:21 +00:00
|
|
|
//public LiquidStack getLiquid();
|
2013-05-03 13:00:44 +00:00
|
|
|
|
|
|
|
public int getEnergy();
|
|
|
|
|
|
|
|
public int getChance();
|
|
|
|
}
|