ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/blocks/InitBlocks.java

45 lines
1.5 KiB
Java
Raw Normal View History

2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.blocks;
2015-01-05 22:14:01 +01:00
2015-03-07 12:51:28 +01:00
import ellpeck.actuallyadditions.util.Util;
import net.minecraft.block.Block;
2015-01-05 22:14:01 +01:00
public class InitBlocks{
public static Block blockCompost;
public static Block blockMisc;
public static Block blockFeeder;
public static Block blockGiantChest;
public static Block blockGrinder;
public static Block blockGrinderDouble;
public static Block blockFurnaceDouble;
2015-03-19 21:27:56 +01:00
public static Block blockInputter;
2015-01-05 22:14:01 +01:00
public static void init(){
Util.logInfo("Initializing Blocks...");
blockCompost = new BlockCompost();
Util.register(blockCompost, BlockCompost.TheItemBlock.class);
2015-01-05 22:14:01 +01:00
blockMisc = new BlockMisc();
Util.register(blockMisc, BlockMisc.TheItemBlock.class);
blockFeeder = new BlockFeeder();
Util.register(blockFeeder, BlockFeeder.TheItemBlock.class);
2015-01-05 22:14:01 +01:00
blockGiantChest = new BlockGiantChest();
Util.register(blockGiantChest, BlockGiantChest.TheItemBlock.class);
blockGrinder = new BlockGrinder(false);
Util.register(blockGrinder, BlockGrinder.TheItemBlock.class);
blockGrinderDouble = new BlockGrinder(true);
Util.register(blockGrinderDouble, BlockGrinder.TheItemBlock.class);
blockFurnaceDouble = new BlockFurnaceDouble();
Util.register(blockFurnaceDouble, BlockFurnaceDouble.TheItemBlock.class);
2015-03-19 21:27:56 +01:00
blockInputter = new BlockInputter();
2015-03-22 20:07:06 +01:00
Util.register(blockInputter, BlockInputter.TheItemBlock.class);
}
}