Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-20 05:20:07 +01:00
326091c130
Add a recipe iterator to make it possible to retrieve and remove recipes (BUKKIT-738), and updated the recipe classes to not clip the data to 127 (BUKKIT-624)
17 Zeilen
310 B
Java
17 Zeilen
310 B
Java
package net.minecraft.server;
|
|
|
|
import org.bukkit.inventory.Recipe; // CraftBukkit
|
|
|
|
public interface CraftingRecipe {
|
|
|
|
boolean a(InventoryCrafting inventorycrafting);
|
|
|
|
ItemStack b(InventoryCrafting inventorycrafting);
|
|
|
|
int a();
|
|
|
|
ItemStack b();
|
|
|
|
Recipe toBukkitRecipe(); // CraftBukkit
|
|
}
|