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

import org.bukkit.inventory.Recipe; // CraftBukkit

public interface CraftingRecipe {

    boolean a(InventoryCrafting inventorycrafting);

    ItemStack b(InventoryCrafting inventorycrafting);

    int a();

    ItemStack b();
    
    Recipe toBukkitRecipe(); // CraftBukkit
}