Package civquest.util

Examples of civquest.util.Coordinate.sub()


          break;   // enter the map again...
        }
    Coordinate minuscoord = (Coordinate)coord.clone();
    for(int z = 0;z < config.pldepheights_maxdistance;z++)
        {
      minuscoord = minuscoord.sub(currdir);
      minuscoord = mapdata.adjustToMapSize(minuscoord);
      if(minuscoord != null)
          {
        if(platemap[minuscoord.y][minuscoord.x] == currplate.getNumber())
            {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.