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

📄 lpmaps.java

📁 手机游戏
💻 JAVA
字号:


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 + -