BiomesOPlenty/src/minecraft/forestry/api/recipes/ISqueezerManager.java

44 lines
1.6 KiB
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package forestry.api.recipes;
/**
* Provides an interface to the recipe manager of the suqeezer.
*
* The manager is initialized at the beginning of Forestry's BaseMod.load() cycle. Begin adding recipes in BaseMod.ModsLoaded() and this shouldn't be null even
* if your mod loads before Forestry.
*
* Accessible via {@link RecipeManagers.squeezerManager}
*
* @author SirSengir
*/
public interface ISqueezerManager extends ICraftingProvider {
/**
* Add a recipe to the squeezer.
*
* @param timePerItem
* Number of work cycles required to squeeze one set of resources.
* @param resources
* Array of item stacks representing the required resources for one process. Stack size will be taken into account.
* @param liquid
* {@link LiquidStack} representing the output of this recipe.
* @param remnants
* Item stack representing the possible remnants from this recipe.
* @param chance
* Chance remnants will be produced by a single recipe cycle.
*/
//public void addRecipe(int timePerItem, ItemStack[] resources, LiquidStack liquid, ItemStack remnants, int chance);
2013-05-03 13:00:44 +00:00
/**
* Add a recipe to the squeezer.
*
* @param timePerItem
* Number of work cycles required to squeeze one set of resources.
* @param resources
* Array of item stacks representing the required resources for one process. Stack size will be taken into account.
* @param liquid
* {@link LiquidStack} representing the output of this recipe.
*/
//public void addRecipe(int timePerItem, ItemStack[] resources, LiquidStack liquid);
2013-05-03 13:00:44 +00:00
}