Applied-Energistics-2-tiler.../recipes/handlers/Grind.java

28 lines
622 B
Java
Raw Normal View History

package appeng.recipes.handlers;
2014-02-20 00:33:36 +01:00
import java.util.List;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RecipeError;
import appeng.api.exceptions.RegistrationError;
import appeng.api.recipes.ICraftHandler;
import appeng.api.recipes.IIngredient;
public class Grind implements ICraftHandler
{
2014-02-20 00:33:36 +01:00
@Override
public void setup(List<List<IIngredient>> input,
List<List<IIngredient>> output) throws RecipeError {
// TODO Auto-generated method stub
}
@Override
public void register() throws RegistrationError, MissingIngredientError {
// TODO Auto-generated method stub
}
}