Examples of CraftingRecipe


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

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

    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
Copyright © 2018 www.massapi.com. 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.