001 package org.bukkit.inventory; 002 003 /** 004 * Represents some type of crafting recipe. 005 */ 006 public interface Recipe { 007 008 /** 009 * Get the result of this recipe. 010 * 011 * @return The result stack 012 */ 013 ItemStack getResult(); 014 }