Package amidst.map

Examples of amidst.map.MapObjectVillage


    for (int x = 0; x < size; x++) {
      for (int y = 0; y < size; y++) {
        int chunkX = x + frag.getChunkX();
        int chunkY = y + frag.getChunkY();
        if (checkChunk(chunkX, chunkY)) {
          frag.addObject(new MapObjectVillage(x << 4, y << 4).setParent(this));
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of amidst.map.MapObjectVillage

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.