minecraft-src/net/minecraft/data/recipes/RecipeCategory.java
2025-07-04 01:41:11 +03:00

23 lines
494 B
Java

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 recipeFolderName) {
this.recipeFolderName = recipeFolderName;
}
public String getFolderName() {
return this.recipeFolderName;
}
}