Package colonies.src.buildings

Examples of colonies.src.buildings.BlockAlchemistShop


    GameRegistry.registerBlock(fishermanHut);
    GameRegistry.registerTileEntity(TileEntityFishermanHut.class, "container.fishermanHut");
    LanguageRegistry.instance().addStringLocalization("container.fishermanHut", "en_US", "Fisherman's Hut");

    // Alchemist's Shop
    alchemistShop = new BlockAlchemistShop(alchemistShopID);
    LanguageRegistry.addName(alchemistShop, "Alchemist's Shop");
    GameRegistry.registerBlock(alchemistShop);
    GameRegistry.registerTileEntity(TileEntityAlchemistShop.class, "container.alchemistShop");
    LanguageRegistry.instance().addStringLocalization("container.alchemistShop", "en_US", "Alchemist's Shop");
View Full Code Here

TOP

Related Classes of colonies.src.buildings.BlockAlchemistShop

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.