Example usage for net.minecraftforge.common.crafting CraftingHelper getIngredient

List of usage examples for net.minecraftforge.common.crafting CraftingHelper getIngredient

Introduction

In this page you can find the example usage for net.minecraftforge.common.crafting CraftingHelper getIngredient.

Prototype

public static Ingredient getIngredient(JsonElement json) 

Source Link

Usage

From source file:buildcraft.api.recipes.IngredientStack.java

License:Mozilla Public License

public static IngredientStack of(Object o) {
    return new IngredientStack(CraftingHelper.getIngredient(o));
}