Archiviert
13
0
Dieses Repository wurde am 2024-12-25 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
2012-10-27 22:19:03 -04:00

15 Zeilen
281 B
Java

package net.minecraft.server;
public interface IRecipe {
boolean a(InventoryCrafting inventorycrafting, World world);
ItemStack a(InventoryCrafting inventorycrafting);
int a();
ItemStack b();
org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit
}