Items
Create Custom Items to use around the world
Imports
To get started add the import
import dev.xdpxi.xdlib.api.v3.Register;
import net.minecraft.item.Item;
Custom Items
To make a custom item you add Register.registerItem()
to the Mod Initializer
test_item = Register.registerItem(
new Item(new Item.Settings()),
"test_item",
MOD_ID
);
Last updated