2014-02-10 04:16:36 +01:00
|
|
|
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-10 04:16:36 +01:00
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-10 04:16:36 +01:00
|
|
|
}
|