Applied-Energistics-2-tiler.../recipes/handlers/CraftHandler.java
2014-02-09 21:16:36 -06:00

21 lines
362 B
Java

package appeng.recipes.handlers;
import java.util.List;
import appeng.recipes.Ingredient;
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
{
}
}