Boblet b5b67a7085 the solidification recipes got out of hand and i accidentally added all
those crack oil products i was talking about oops
2022-02-01 16:03:24 +01:00

23 lines
453 B
Java

package com.hbm.items;
/**
* I'm not at all sure if bunching together all these enums in one long class is a good idea
* but I don't want to make a new class for every multi item to hold the enum
* since that's entirely against the point of ItemEnumMulti to begin with.
* @author hbm
*/
public class ItemEnums {
public static enum EnumCokeType {
COAL,
LIGNITE,
PETROLEUM
}
public static enum EnumTarType {
CRUDE,
CRACK,
COAL
}
}