Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 14 lines 232 B view raw
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}