summaryrefslogtreecommitdiff
path: root/src/main/java/net/corechg/sparkt/BlockRegister.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/corechg/sparkt/BlockRegister.java')
-rw-r--r--src/main/java/net/corechg/sparkt/BlockRegister.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/main/java/net/corechg/sparkt/BlockRegister.java b/src/main/java/net/corechg/sparkt/BlockRegister.java
deleted file mode 100644
index 5833055..0000000
--- a/src/main/java/net/corechg/sparkt/BlockRegister.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package net.corechg.sparkt;
-
-import net.minecraft.block.Block;
-import net.minecraft.item.BlockItem;
-import net.minecraft.item.Item;
-import net.minecraft.util.Identifier;
-import net.minecraft.util.registry.Registry;
-import net.corechg.sparkt.block.*;
-
-public class BlockRegister {
-
- public static final Block MACHINE_BLOCK = new MachineBlock();
- public static final Block MACHINE_FURNACE = new MachineFurnace();
- public static final Block DRIVER_MECHANICAL = new DriverMechanical();
- public static final Block MACHINE_GRINDER = new MachineGrinder();
- //public static final Block
-
- public static void register(String modid) {
- Registry.register(Registry.BLOCK, new Identifier(modid, "machine_block"), MACHINE_BLOCK);
- Registry.register(Registry.ITEM, new Identifier(modid, "machine_block"), new BlockItem(MACHINE_BLOCK, new Item.Settings()));
-
- Registry.register(Registry.BLOCK, new Identifier(modid, "machine_furnace"), MACHINE_FURNACE);
- Registry.register(Registry.ITEM, new Identifier(modid, "machine_furnace"), new BlockItem(MACHINE_FURNACE, new Item.Settings()));
-
- Registry.register(Registry.BLOCK, new Identifier(modid, "driver_mechanical"), DRIVER_MECHANICAL);
- Registry.register(Registry.ITEM, new Identifier(modid, "driver_mechanical"), new BlockItem(DRIVER_MECHANICAL, new Item.Settings()));
-
- Registry.register(Registry.BLOCK, new Identifier(modid, "machine_grinder"), MACHINE_GRINDER);
- Registry.register(Registry.ITEM, new Identifier(modid, "machine_grinder"), new BlockItem(MACHINE_GRINDER, new Item.Settings()));
- }
-} \ No newline at end of file