15 lines
232 B
Java
15 lines
232 B
Java
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();
|
|
}
|