2011-07-15 02:54:07 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public interface IRecipe {
|
2011-07-15 02:54:07 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
boolean a(InventoryCrafting inventorycrafting, World world);
|
2011-07-15 02:54:07 +02:00
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
ItemStack a(InventoryCrafting inventorycrafting);
|
2011-07-15 02:54:07 +02:00
|
|
|
|
|
|
|
int a();
|
|
|
|
|
|
|
|
ItemStack b();
|
2012-07-22 08:18:00 +02:00
|
|
|
|
|
|
|
org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit
|
2011-07-15 02:54:07 +02:00
|
|
|
}
|