mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
20 lines
323 B
Java
20 lines
323 B
Java
package com.hbm.items.machine;
|
|
|
|
import com.hbm.items.ItemEnumMulti;
|
|
|
|
public class ItemRTGPelletDepleted extends ItemEnumMulti {
|
|
|
|
public ItemRTGPelletDepleted() {
|
|
super(DepletedRTGMaterial.class, true, true);
|
|
}
|
|
|
|
public enum DepletedRTGMaterial {
|
|
BISMUTH,
|
|
MERCURY,
|
|
NEPTUNIUM,
|
|
LEAD,
|
|
ZIRCONIUM,
|
|
NICKEL;
|
|
}
|
|
}
|