Remove gitmodules

Integrate api and lang into core
This commit is contained in:
thatsIch
2014-12-04 13:00:54 +01:00
parent d54cf458b6
commit ede5fb938b
243 changed files with 14227 additions and 9 deletions
@@ -0,0 +1,29 @@
package appeng.api.recipes;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RecipeError;
import appeng.api.exceptions.RegistrationError;
import java.util.List;
public interface ICraftHandler
{
/**
* Called when your recipe handler receives a newly parsed list of inputs/outputs.
*
* @param input parsed inputs
* @param output parsed outputs
* @throws RecipeError
*/
public void setup(List<List<IIngredient>> input, List<List<IIngredient>> output) throws RecipeError;
/**
* called when all recipes are parsed, and your required to register your recipe.
*
* @throws RegistrationError
* @throws MissingIngredientError
*/
public void register() throws RegistrationError, MissingIngredientError;
}