?? lpmaps.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 + -