mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
19 lines
313 B
Java
19 lines
313 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;
|
|
}
|
|
}
|