Package net.minecraft.src
Interface IRecipe
-
- All Known Implementing Classes:
ShapedRecipes
,ShapelessRecipes
public interface IRecipe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ItemStack
getCraftingResult(InventoryCrafting inventorycrafting)
ItemStack
getRecipeOutput()
int
getRecipeSize()
boolean
matches(InventoryCrafting inventorycrafting)
-
-
-
Method Detail
-
matches
boolean matches(InventoryCrafting inventorycrafting)
-
getCraftingResult
ItemStack getCraftingResult(InventoryCrafting inventorycrafting)
-
getRecipeSize
int getRecipeSize()
-
getRecipeOutput
ItemStack getRecipeOutput()
-
-