mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
303 B
Java
18 lines
303 B
Java
package com.hbm.items.special;
|
|
|
|
import com.hbm.items.ItemEnumMulti;
|
|
|
|
public class ItemCircuitStarComponent extends ItemEnumMulti {
|
|
|
|
public ItemCircuitStarComponent() {
|
|
super(CircuitComponentType.class, true, true);
|
|
}
|
|
|
|
public static enum CircuitComponentType {
|
|
CHIPSET,
|
|
CPU,
|
|
RAM,
|
|
CARD
|
|
}
|
|
}
|