1 2 3 4 5 6 7 8 9 10 11 12 13 14
package net.minecraft.server; public interface IRecipe { boolean a(InventoryCrafting inventorycrafting, World world); ItemStack a(InventoryCrafting inventorycrafting); int a(); ItemStack b(); org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit }