Package vazkii.botania.api.recipe

Examples of vazkii.botania.api.recipe.RecipePetals


   * @param inputs The objects for crafting. Can be ItemStack, MappableStackWrapper
   * or String (case for Ore Dictionary). The array can't be larger than 16.
   * @return The recipe created.
   */
  public static RecipePetals registerPetalRecipe(ItemStack output, Object... inputs) {
    RecipePetals recipe = new RecipePetals(output, inputs);
    petalRecipes.add(recipe);
    return recipe;
  }
View Full Code Here

TOP

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

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.