Paper/src/main/java/net/minecraft/server/CraftingRecipe.java
Celtic Minstrel 84ecdb5439 Imported from mc-dev:
- ShapedRecipes
- ShapelessRecipes
- CraftingRecipe
- FurnaceRecipes
2012-02-20 16:39:33 -05:00

13 lines
209 B
Java

package net.minecraft.server;
public interface CraftingRecipe {
boolean a(InventoryCrafting inventorycrafting);
ItemStack b(InventoryCrafting inventorycrafting);
int a();
ItemStack b();
}