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

public interface CraftingRecipe {

    boolean a(InventoryCrafting inventorycrafting);

    ItemStack b(InventoryCrafting inventorycrafting);

    int a();

    ItemStack b();
}