Newer
Older
BetterEnhancement / src / main / java / com / watschman / betterenhancement / blocks / ModBlocks.java
package com.watschman.betterenhancement.blocks;

import com.watschman.betterenhancement.reference.Reference;
import net.minecraft.block.material.MapColor;
import net.minecraft.block.material.Material;
import net.minecraftforge.fml.common.registry.GameRegistry;

@GameRegistry.ObjectHolder(Reference.MOD_ID)
public final class ModBlocks {
    public static ModBlockBase blockAntizide;
    public static ModBlockBase blockAntozide;

    public static void init() {
        blockAntizide = ModBlockBase.createBlockObject(Material.ROCK, MapColor.PINK, "antizide").addConfigEntry("isEnabled", "Enable Antizide", true, "Whether or not the Block should be enabled");
        blockAntozide = ModBlockBase.createBlockObject(Material.ROCK, MapColor.PINK, "antozide").addConfigEntry("isEnabled", "Enable Antozide", true, "Whether or not the Block should be enabled");
    }
}