minecraft-src/net/minecraft/world/item/crafting/RecipeAccess.java
2025-07-04 02:49:36 +03:00

9 lines
274 B
Java

package net.minecraft.world.item.crafting;
import net.minecraft.resources.ResourceKey;
public interface RecipeAccess {
RecipePropertySet propertySet(ResourceKey<RecipePropertySet> propertySet);
SelectableRecipe.SingleInputSet<StonecutterRecipe> stonecutterRecipes();
}