Class CrushingRecipeGen

java.lang.Object
net.minecraft.data.recipes.RecipeProvider
All Implemented Interfaces:
net.minecraft.data.DataProvider
Direct Known Subclasses:
CreateCrushingRecipeGen

public abstract class CrushingRecipeGen extends ProcessingRecipeGen
The base class for Crushing recipe generation. Addons should extend this and use the ProcessingRecipeGen.create(java.lang.String, java.util.function.Supplier<net.minecraft.world.level.ItemLike>, java.util.function.UnaryOperator<com.simibubi.create.content.processing.recipe.ProcessingRecipeBuilder<T>>) methods or the helper methods contained in this class to make recipes. For an example of how you might do this, see Create's implementation: CreateCrushingRecipeGen. Needs to be added to a registered recipe provider to do anything, see CreateRecipeProvider