1package org.bukkit.inventory; 2 3/** 4 * Represents some type of crafting recipe. 5 */ 6public interface Recipe { 7 8 /** 9 * Get the result of this recipe. 10 * 11 * @return The result stack 12 */ 13 ItemStack getResult(); 14}