ConstructionWand/src/main/java/thetadev/constructionwand/items/ItemBase.java
2021-08-02 23:48:18 +02:00

12 lines
317 B
Java

package thetadev.constructionwand.items;
import net.minecraft.world.item.Item;
import thetadev.constructionwand.ConstructionWand;
public class ItemBase extends Item
{
public ItemBase(String name, Properties properties) {
super(properties);
setRegistryName(ConstructionWand.MODID, name);
}
}