LPMaps.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /**
  2.  * <p>Title: lipeng</p>
  3.  * <p>Description:
  4.  * You cannot remove this copyright and notice.
  5.  * You cannot use this file without the express permission of the author.
  6.  * All Rights Reserved</p>
  7.  * <p>Copyright: lizhenpeng (c) 2004</p>
  8.  * <p>Company: LP&P</p>
  9.  * @author lizhenpeng
  10.  * @version 1.0.1
  11.  * <p>
  12.  * Revise History
  13.  * 2004.07.26 in order to change map's content,change final property to normal V1.0.1
  14.  * </p>
  15.  */
  16. package lipeng;
  17. public class LPMaps
  18. {
  19.   public char mapArray[][];
  20.   public int x;
  21.   public int y;
  22.   public int w;
  23.   public int h;
  24.   public int tileSize;
  25.   public final LPImageManage image;
  26.   public String mapId;
  27.   public LPMaps(LPImageManage image,char array[][],int w,int h,int tileSize,String id)
  28.   {
  29.     this.image = image;
  30.     mapArray = array;
  31.     this.x = 0;
  32.     this.y = 0;
  33.     this.w = w;
  34.     this.h = h;
  35.     this.tileSize = tileSize;
  36.     mapId = id;
  37.   }
  38. }