3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 05:20:07 +01:00
Paper/src/main/java/net/minecraft/server/IRecipe.java

15 Zeilen
281 B
Java

package net.minecraft.server;
2012-07-29 09:33:13 +02:00
public interface IRecipe {
boolean a(InventoryCrafting inventorycrafting, World world);
ItemStack a(InventoryCrafting inventorycrafting);
int a();
ItemStack b();
org.bukkit.inventory.Recipe toBukkitRecipe(); // CraftBukkit
}