You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			597 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			597 B
		
	
	
	
		
			Java
		
	
package net.minecraft.item.crafting;
 | 
						|
 | 
						|
import net.minecraft.inventory.InventoryCrafting;
 | 
						|
import net.minecraft.item.ItemStack;
 | 
						|
import net.minecraft.world.World;
 | 
						|
 | 
						|
public interface IRecipe
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Used to check if a recipe matches current crafting inventory
 | 
						|
     */
 | 
						|
    boolean matches(InventoryCrafting p_77569_1_, World p_77569_2_);
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns an Item that is the result of this recipe
 | 
						|
     */
 | 
						|
    ItemStack getCraftingResult(InventoryCrafting p_77572_1_);
 | 
						|
 | 
						|
    /**
 | 
						|
     * Returns the size of the recipe area
 | 
						|
     */
 | 
						|
    int getRecipeSize();
 | 
						|
 | 
						|
    ItemStack getRecipeOutput();
 | 
						|
} |