package appeng.recipes.handlers; import java.util.List; import appeng.recipes.Ingredient; import appeng.recipes.MissingIngredientError; import appeng.recipes.RecipeError; import appeng.recipes.RegistrationError; public class CraftHandler { public void setup(List> input, List> output) throws RecipeError { } public void register() throws RegistrationError, MissingIngredientError { } }