Package me.daddychurchill.CityWorld.Support

Examples of me.daddychurchill.CityWorld.Support.RealChunk


        // where are we?
        int chunkX = chunk.getX();
        int chunkZ = chunk.getZ();
       
        // place to work
        RealChunk realChunk = new RealChunk(chunkGen, chunk);

        // figure out what everything looks like
        PlatMap platmap = chunkGen.getPlatMap(chunkX, chunkZ);
        if (platmap != null) {
          platmap.generateBlocks(realChunk);
View Full Code Here

TOP

Related Classes of me.daddychurchill.CityWorld.Support.RealChunk

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.