Package colonies.src.buildings

Examples of colonies.src.buildings.BlockHunterBlind


    GameRegistry.registerBlock(townHall);
    GameRegistry.registerTileEntity(TileEntityTownHall.class, "container.townhall");
    LanguageRegistry.instance().addStringLocalization("container.townhall", "en_US", "MyTown Town Hall");

    // Hunter Blind
    hunterBlind = new BlockHunterBlind(hunterBlindID);
    LanguageRegistry.addName(hunterBlind, "Hunter Blind");
    GameRegistry.registerBlock(hunterBlind);
    GameRegistry.registerTileEntity(TileEntityHunterBlind.class, "container.hunterBlind");
    LanguageRegistry.instance().addStringLocalization("container.hunterBlind", "en_US", "Hunter Blind");
View Full Code Here

TOP

Related Classes of colonies.src.buildings.BlockHunterBlind

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.