mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
10 lines
189 B
Java
10 lines
189 B
Java
package net.xevianlight.aphelion.item;
|
|
|
|
import net.minecraft.world.item.Item;
|
|
|
|
public class IngotUranium extends Item {
|
|
public IngotUranium() {
|
|
super(new Properties());
|
|
}
|
|
}
|