mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-29 20:28:29 +00:00
14 lines
281 B
Java
14 lines
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
|
|
}
|