Package com.khorn.terraincontrol.customobjects

Examples of com.khorn.terraincontrol.customobjects.CustomObjectStructureCache


    {
        this.settings = configs;

        this.world = world;
        this.seed = world.getSeed();
        this.structureCache = new CustomObjectStructureCache(this);

        this.dungeonGen = new WorldGenDungeons();
        this.strongholdGen = new StrongholdGen(configs);

        this.villageGen = new VillageGen(configs);
View Full Code Here


        if (!initialized)
        {
            // Things that need to be done only when enabling
            // for the first time
            this.structureCache = new CustomObjectStructureCache(this);

            switch (this.settings.worldConfig.ModeTerrain)
            {
                case Normal:
                case OldGenerator:
View Full Code Here

TOP

Related Classes of com.khorn.terraincontrol.customobjects.CustomObjectStructureCache

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.