⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lpmaps.java

📁 经典游戏
💻 JAVA
字号:
/**
 * <p>Title: lipeng</p>
 * <p>Description:
 * You cannot remove this copyright and notice.
 * You cannot use this file without the express permission of the author.
 * All Rights Reserved</p>
 * <p>Copyright: lizhenpeng (c) 2004</p>
 * <p>Company: LP&P</p>
 * @author lizhenpeng
 * @version 1.0.1
 * <p>
 * Revise History
 * 2004.07.26 in order to change map's content,change final property to normal V1.0.1
 * </p>
 */

package lipeng;


public class LPMaps
{
  public char mapArray[][];
  public int x;
  public int y;
  public int w;
  public int h;
  public int tileSize;
  public final LPImageManage image;
  public String mapId;
  public LPMaps(LPImageManage image,char array[][],int w,int h,int tileSize,String id)
  {
    this.image = image;
    mapArray = array;
    this.x = 0;
    this.y = 0;
    this.w = w;
    this.h = h;
    this.tileSize = tileSize;
    mapId = id;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -