use of stevekung.mods.moreplanets.util.CreativeTabsMP in project MorePlanets by SteveKunG.
the class MorePlanetsCore method preInit.
@EventHandler
public void preInit(FMLPreInitializationEvent event) {
ConfigManagerMP.init(new File(event.getModConfigurationDirectory(), "MorePlanets.cfg"));
MorePlanetsCore.initModInfo(event.getModMetadata());
MorePlanetsCore.BLOCK_TAB = new CreativeTabsMP("MorePlanetsBlocks");
MorePlanetsCore.ITEM_TAB = new CreativeTabsMP("MorePlanetsItems");
MPBlocks.init();
MPItems.init();
MPEntities.init();
MPPlanets.init();
MPPotions.init();
MPBiomes.init();
MPOthers.init();
MorePlanetsCore.PROXY.registerPreRendering();
}
Aggregations