3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 13:30:05 +01:00
Paper/src/main/java/net/minecraft/server/IRecipe.java
2012-08-02 04:58:50 -05:00

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
}