Package se.llbit.chunky.world

Examples of se.llbit.chunky.world.ChunkData


    try {
      if (m.matches()) {
        filename = m.group(3);
        int x = Integer.parseInt(m.group(1));
        int z = Integer.parseInt(m.group(2));
        ChunkData data = Region.getChunkData(new File(filename),
          ChunkPosition.get(x, z));
        if (data == null) {
          System.err.println("No such chunk in region: (" + x + "," + z + ")");
          return new ErrorTag();
        }
View Full Code Here

TOP

Related Classes of se.llbit.chunky.world.ChunkData

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.