Examples of MapCell


Examples of net.sourceforge.dsnk.model.MapCell

   * @param offset
   *            offset to start reading cell
   * @return map cell
   */
  private MapCell getMapCell(byte[] data, int offset) {
    MapCell cell = new MapCell();

    short index = getShortValue(data, offset);
    byte altitude = data[offset + 2];

    cell.setIndex(index);
    cell.setAltitude(altitude);

    return cell;
  }
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.