Package colonies.src.buildings

Examples of colonies.src.buildings.BlockHouse


    GameRegistry.registerBlock(loggingCamp);
    GameRegistry.registerTileEntity(TileEntityLoggingCamp.class, "container.loggingcamp");
    LanguageRegistry.instance().addStringLocalization("container.loggingcamp", "en_US", "Logging Camp");

    // House
    house = new BlockHouse(blockHouseID);
    LanguageRegistry.addName(house, "House");
    GameRegistry.registerBlock(house);
    GameRegistry.registerTileEntity(TileEntityHouse.class, "container.house");
    LanguageRegistry.instance().addStringLocalization("container.house", "en_US", "House");
   
View Full Code Here

TOP

Related Classes of colonies.src.buildings.BlockHouse

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.