mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-05 02:15:27 +02:00
12 lines
311 B
Java
12 lines
311 B
Java
package thetadev.constructionwand.items;
|
|
|
|
import net.minecraft.item.Item;
|
|
import thetadev.constructionwand.ConstructionWand;
|
|
|
|
public class ItemBase extends Item
|
|
{
|
|
public ItemBase(String name, Properties properties) {
|
|
super(properties);
|
|
setRegistryName(ConstructionWand.MODID, name);
|
|
}
|
|
}
|