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

public interface IRecipe {

    boolean a(InventoryCrafting inventorycrafting);

    ItemStack b(InventoryCrafting inventorycrafting);

    int a();

    ItemStack b();

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