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

23 lines
330 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 ITransposerRecipe {
public ItemStack getInput();
public ItemStack getOutput();
//public LiquidStack getLiquid();
2013-05-03 13:00:44 +00:00
public int getEnergy();
public int getChance();
}