blob: 644a1cf657e79fc802ef46f37365716674df8a8f [file] [log] [blame] [raw]
package com.gildedgames.the_aether.tileentity;
import cpw.mods.fml.common.registry.GameRegistry;
public class AetherTileEntities {
public static void initialization() {
GameRegistry.registerTileEntity(TileEntityEnchanter.class, "enchanter");
GameRegistry.registerTileEntity(TileEntityFreezer.class, "freezer");
GameRegistry.registerTileEntity(IncubatorTileEntity.class, "incubator");
GameRegistry.registerTileEntity(TreasureChestTileEntity.class, "treasure_chest");
GameRegistry.registerTileEntity(TileEntityChestMimic.class, "chest_mimic");
}
}