summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/inventory/Recipe.java
blob: 7977ce2d7937380aa7f90f15d7a92d6502f9b152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bukkit.inventory;

/**
 * Represents some type of crafting recipe.
 */
public interface Recipe {

    /**
     * Get the result of this recipe.
     *
     * @return The result stack
     */
    ItemStack getResult();
}