summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/CraftingRecipe.java
blob: fceeb7363202793e3dce12f3a31aba6c5e9fa11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package net.minecraft.server;

public interface CraftingRecipe {

    boolean a(InventoryCrafting inventorycrafting);

    ItemStack b(InventoryCrafting inventorycrafting);

    int a();

    ItemStack b();

    org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit
}