public interface ICraftHandler
Modifier and Type | Method and Description |
---|---|
void |
register()
called when all recipes are parsed, and your required to register your recipe.
|
void |
setup(java.util.List<java.util.List<IIngredient>> input,
java.util.List<java.util.List<IIngredient>> output)
Called when your recipe handler receives a newly parsed list of inputs/outputs.
|
void setup(java.util.List<java.util.List<IIngredient>> input, java.util.List<java.util.List<IIngredient>> output) throws RecipeError
input
- parsed inputsoutput
- parsed outputsRecipeError
void register() throws RegistrationError, MissingIngredientError