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