Package colonies.src.buildings

Examples of colonies.src.buildings.BlockFishermanHut


    GameRegistry.registerBlock(hunterBlind);
    GameRegistry.registerTileEntity(TileEntityHunterBlind.class, "container.hunterBlind");
    LanguageRegistry.instance().addStringLocalization("container.hunterBlind", "en_US", "Hunter Blind");

    // Fisherman's Hut
    fishermanHut = new BlockFishermanHut(fishermanHutID);
    LanguageRegistry.addName(fishermanHut, "Fisherman's Hut");
    GameRegistry.registerBlock(fishermanHut);
    GameRegistry.registerTileEntity(TileEntityFishermanHut.class, "container.fishermanHut");
    LanguageRegistry.instance().addStringLocalization("container.fishermanHut", "en_US", "Fisherman's Hut");
View Full Code Here

TOP

Related Classes of colonies.src.buildings.BlockFishermanHut

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.