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

23 lines
330 B
Java

/**
* 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();
public int getEnergy();
public int getChance();
}