Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class ModItems {
- public static final Item EXAMPLE_ITEM = new Item(new FabricItemSettings().group(ItemGroups.MISC));
- // Define other items here
- public static void registerItems() {
- Registry.register(Registry.ITEM, new Identifier("example", "example_item"), EXAMPLE_ITEM);
- // Register other items here
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement