geforkt von Mirrors/Paper
15 Zeilen
268 B
Java
15 Zeilen
268 B
Java
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
|
|
}
|