Interface ISmelterRecipe

All Superinterfaces:
IForestryRecipe, net.minecraft.world.item.crafting.Recipe<net.minecraft.world.Container>

public interface ISmelterRecipe extends IForestryRecipe
  • Method Details

    • getProcessingTime

      int getProcessingTime()
      Returns:
      How long this recipe takes to process
    • getInputs

      List<forestry.core.recipes.IngredientStack> getInputs()
      Returns:
      item stacks representing the required resources for one process.
    • getOutput

      net.minecraft.world.item.ItemStack getOutput()
      Returns:
      the result
    • matches

      boolean matches(int processingTime, List<forestry.core.recipes.IngredientStack> in, forestry.core.recipes.IngredientStack out)