Applied-Energistics-2-tiler.../recipes/handlers/CraftHandler.java
AlgorithmX2 21c254f09f Error control, missing Item Control
Import ( not done ).
And recursive file importing.
2014-02-10 17:15:43 -06:00

21 lines
432 B
Java

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<List<Ingredient>> input, List<List<Ingredient>> output) throws RecipeError
{
}
public void register() throws RegistrationError, MissingIngredientError
{
}
}