equivalent-exchange-3/src/main/java/com/pahimar/ee3/init/ModBlocks.java

30 lines
1.4 KiB
Java
Raw Normal View History

package com.pahimar.ee3.init;
2013-08-23 16:59:50 +02:00
import com.pahimar.ee3.block.*;
import com.pahimar.ee3.item.ItemBlockAlchemicalChest;
import com.pahimar.ee3.item.ItemBlockAlchemicalFuel;
2014-04-02 04:47:08 +02:00
import com.pahimar.ee3.reference.Names;
import cpw.mods.fml.common.registry.GameRegistry;
public class ModBlocks
{
2014-04-02 04:47:08 +02:00
public static final BlockEE chalk = new BlockChalk();
public static final BlockEE alchemicalFuel = new BlockAlchemicalFuel();
public static final BlockEE alchemicalChest = new BlockAlchemicalChest();
public static final BlockEE aludel = new BlockAludel();
public static final BlockEE calcinator = new BlockCalcinator();
public static final BlockEE glassBell = new BlockGlassBell();
public static final BlockEE researchStation = new BlockResearchStation();
2014-04-02 04:47:08 +02:00
public static void init()
{
2014-04-02 04:47:08 +02:00
GameRegistry.registerBlock(chalk, "tile." + Names.Items.CHALK);
GameRegistry.registerBlock(alchemicalFuel, ItemBlockAlchemicalFuel.class, "tile." + Names.Items.ALCHEMICAL_FUEL);
GameRegistry.registerBlock(alchemicalChest, ItemBlockAlchemicalChest.class, "tile." + Names.Blocks.ALCHEMICAL_CHEST);
GameRegistry.registerBlock(aludel, "tile." + Names.Blocks.ALUDEL);
GameRegistry.registerBlock(calcinator, "tile." + Names.Blocks.CALCINATOR);
GameRegistry.registerBlock(glassBell, "tile." + Names.Blocks.GLASS_BELL);
GameRegistry.registerBlock(researchStation, "tile." + Names.Blocks.RESEARCH_STATION);
2013-08-23 16:59:50 +02:00
}
}