Package colonies.src.buildings

Examples of colonies.src.buildings.BlockTownHall


    GameRegistry.registerBlock(house);
    GameRegistry.registerTileEntity(TileEntityHouse.class, "container.house");
    LanguageRegistry.instance().addStringLocalization("container.house", "en_US", "House");
   
    // Town Hall
    townHall = new BlockTownHall(townHallID);
    LanguageRegistry.addName(townHall, "Town Hall");
    GameRegistry.registerBlock(townHall);
    GameRegistry.registerTileEntity(TileEntityTownHall.class, "container.townhall");
    LanguageRegistry.instance().addStringLocalization("container.townhall", "en_US", "MyTown Town Hall");
View Full Code Here

TOP

Related Classes of colonies.src.buildings.BlockTownHall

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.