thaumic-machinery/src/main/java/net/anvilcraft/thaummach/GuiID.java

17 lines
290 B
Java
Raw Normal View History

2023-05-18 22:41:38 +02:00
package net.anvilcraft.thaummach;
public enum GuiID {
2023-05-19 19:00:16 +02:00
BORE,
VOID_CHEST,
2023-05-20 19:50:11 +02:00
VOID_INTERFACE,
CRYSTALLIZER;
2023-05-18 22:41:38 +02:00
public static GuiID get(int id) {
if (id >= 0 && id < GuiID.values().length) {
return GuiID.values()[id];
}
return null;
}
}