Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
@@ -30,14 +30,16 @@ import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RecipeError;
import appeng.api.exceptions.RegistrationError;
public interface ICraftHandler
{
/**
* Called when your recipe handler receives a newly parsed list of inputs/outputs.
*
* @param input parsed inputs
* @param input parsed inputs
* @param output parsed outputs
*
* @throws RecipeError
*/
void setup( List<List<IIngredient>> input, List<List<IIngredient>> output ) throws RecipeError;
@@ -49,5 +51,4 @@ public interface ICraftHandler
* @throws MissingIngredientError
*/
void register() throws RegistrationError, MissingIngredientError;
}