Typo IWebsiteSeralizer

This commit is contained in:
thatsIch
2014-09-21 02:29:41 +02:00
parent e5d9147728
commit 6b4f7b5e3a
14 changed files with 35 additions and 35 deletions
+15
View File
@@ -0,0 +1,15 @@
package appeng.recipes.handlers;
import net.minecraft.item.ItemStack;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RegistrationError;
import appeng.recipes.RecipeHandler;
public interface IWebsiteSerializer
{
String getPattern(RecipeHandler han);
boolean canCraft(ItemStack output) throws RegistrationError, MissingIngredientError;
}