22 lines
376 B
Java
22 lines
376 B
Java
/**
|
|
* Team CoFH
|
|
*
|
|
* Thermal Expansion
|
|
*/
|
|
|
|
package thermalexpansion.api.crafting;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface ISawmillRecipe {
|
|
|
|
public ItemStack getInput();
|
|
|
|
public ItemStack getPrimaryOutput();
|
|
|
|
public ItemStack getSecondaryOutput();
|
|
|
|
public int getSecondaryOutputChance();
|
|
|
|
public int getEnergy();
|
|
}
|