Package net.canarymod.api.inventory.recipes

Examples of net.canarymod.api.inventory.recipes.CraftingRecipe


                impl.execute(listener, hook);
            }
        };
    }
    public CraftingRecipe makeShapedRecipe(Item resultingItem, RecipeRow... rows){
        CraftingRecipe result = new CraftingRecipe(resultingItem, rows);
        return result;
    }
View Full Code Here


    public CraftingRecipe makeShapedRecipe(Item resultingItem, RecipeRow... rows){
        CraftingRecipe result = new CraftingRecipe(resultingItem, rows);
        return result;
    }
    public CraftingRecipe makeShapelessRecipe(Item resultingItem, Item... items){
        CraftingRecipe result = new CraftingRecipe(resultingItem, items);
        return result;
    }
View Full Code Here

TOP

Related Classes of net.canarymod.api.inventory.recipes.CraftingRecipe

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.