2014-03-05 20:34:56 +01:00
|
|
|
package appeng.recipes.handlers;
|
|
|
|
|
2014-03-06 06:52:25 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.exceptions.MissingIngredientError;
|
|
|
|
import appeng.api.exceptions.RegistrationError;
|
2014-03-05 20:34:56 +01:00
|
|
|
import appeng.recipes.RecipeHandler;
|
|
|
|
|
2014-03-06 06:52:25 +01:00
|
|
|
public interface IWebsiteSeralizer
|
|
|
|
{
|
|
|
|
|
|
|
|
String getPattern(RecipeHandler han);
|
|
|
|
|
|
|
|
boolean canCraft(ItemStack output) throws RegistrationError, MissingIngredientError;
|
2014-03-05 20:34:56 +01:00
|
|
|
|
|
|
|
}
|