Package vazkii.botania.api.recipe

Examples of vazkii.botania.api.recipe.RecipeBrew


   * Registers a Brew Recipe (for the Botanical Brewery).
   * @param brew The brew in to be set in this recipe.
   * @inputs The items used in the recipe, no more than 6.
   */
  public static RecipeBrew registerBrewRecipe(Brew brew, Object... inputs) {
    RecipeBrew recipe = new RecipeBrew(brew, inputs);
    brewRecipes.add(recipe);
    return recipe;
  }
View Full Code Here

TOP

Related Classes of vazkii.botania.api.recipe.RecipeBrew

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.