ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/config/ConfigCategories.java

36 lines
1,013 B
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("ConfigCategories.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
package ellpeck.actuallyadditions.config;
public enum ConfigCategories{
FOOD_CRAFTING("food crafting"),
MISC_CRAFTING("misc crafting"),
BLOCKS_CRAFTING("block crafting"),
ITEMS_CRAFTING("item crafting"),
TOOL_VALUES("tool values"),
MACHINE_VALUES("machine values"),
MOB_DROPS("mob drops"),
WORLD_GEN("world gen"),
2015-04-26 21:09:25 +02:00
POTION_RING_CRAFTING("ring crafting"),
2015-06-18 13:14:57 +02:00
OTHER("other"),
2015-06-21 02:28:49 +02:00
FLUIDS("fluids"),
DRILL_VALUES("drill values"),
CRUSHER_RECIPES("crusher recipes"),
ARMOR_VALUES("armor values");
public final String name;
ConfigCategories(String name){
this.name = name;
}
}