Code/net/minecraft/data/recipes/RecipeCategory.java

23 lines
533 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.data.recipes;
public enum RecipeCategory {
BUILDING_BLOCKS("building_blocks"),
DECORATIONS("decorations"),
REDSTONE("redstone"),
TRANSPORTATION("transportation"),
TOOLS("tools"),
COMBAT("combat"),
FOOD("food"),
BREWING("brewing"),
MISC("misc");
private final String recipeFolderName;
private RecipeCategory(final String p_251010_) {
this.recipeFolderName = p_251010_;
}
public String getFolderName() {
return this.recipeFolderName;
}
}