Recipe API Update.
This commit is contained in:
@@ -1,6 +1,27 @@
|
||||
package appeng.recipes.handlers;
|
||||
|
||||
public class Grind extends CraftHandler
|
||||
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
|
||||
{
|
||||
|
||||
@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
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user