BiomesOPlenty/apis/thermalexpansion/api/crafting/ICrucibleManager.java
2013-09-13 16:44:22 +10:00

37 lines
1 KiB
Java

/**
* Team CoFH
*
* Thermal Expansion
*/
package thermalexpansion.api.crafting;
/**
* Provides an interface to the recipe manager of the Crucible. Accessible via
* {@link CraftingManagers.crucibleManager}
*/
public interface ICrucibleManager {
/**
* Add a recipe to the Crucible.
*
* @param energy
* Energy needed to process the item.
* @param input
* ItemStack representing the input item.
* @param output
* LiquidStack representing the output liquid.
* @param overwrite
* Flag to enable recipe overwriting. This will only be allowed if enabled in the
* Thermal Expansion Configuration file and will be logged for information purposes.
*/
//public boolean addRecipe(int energy, ItemStack input, LiquidStack output, boolean overwrite);
// public boolean addRecipe(int energy, ItemStack input, LiquidStack output);
/**
* Access to the full list of recipes.
*/
ICrucibleRecipe[] getRecipeList();
}