blob: 56079d38c118507173f83f468f644ef2d156350a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package miscutil.gregtech.api.enums;
public enum GregtechOreDictNames {
buffer_core, itemGregConduit;
public String unlocalisedName;
private void ModObject() {
unlocalisedName = name();
}
}
|