2011-07-15 02:54:07 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-07-24 05:16:14 +02:00
|
|
|
import org.bukkit.inventory.Recipe; // CraftBukkit
|
|
|
|
|
2011-07-15 02:54:07 +02:00
|
|
|
public interface CraftingRecipe {
|
|
|
|
|
|
|
|
boolean a(InventoryCrafting inventorycrafting);
|
|
|
|
|
|
|
|
ItemStack b(InventoryCrafting inventorycrafting);
|
|
|
|
|
|
|
|
int a();
|
|
|
|
|
|
|
|
ItemStack b();
|
2011-07-24 05:16:14 +02:00
|
|
|
|
|
|
|
Recipe toBukkitRecipe(); // CraftBukkit
|
2011-07-15 02:54:07 +02:00
|
|
|
}
|