Imported from mc-dev:

- ShapedRecipes
- ShapelessRecipes
- CraftingRecipe
- FurnaceRecipes
This commit is contained in:
Celtic Minstrel
2011-07-14 20:54:07 -04:00
committed by EvilSeph
parent 39048be430
commit 84ecdb5439
4 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package net.minecraft.server;
public interface CraftingRecipe {
boolean a(InventoryCrafting inventorycrafting);
ItemStack b(InventoryCrafting inventorycrafting);
int a();
ItemStack b();
}