ConstructionWand/src/main/java/thetadev/constructionwand/items/ItemBase.java
Theta-Dev 6618784804 Added conjured block
Improved data generation
2021-02-17 00:33:10 +01:00

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);
}
}