Add recipe classes and an addRecipe method in the server interface.

This commit is contained in:
Celtic Minstrel
2011-04-16 11:34:31 -04:00
committed by EvilSeph
parent 22e7e7afcf
commit 2b408e236a
5 changed files with 345 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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();
}