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

📄 maps.java

📁 经典FC游戏《超惑星战记》的J2ME版本!!功能基本上都实现了
💻 JAVA
字号:
/**
 * <p>Title: Transpanzer</p>
 * <p>Description:
 * You cannot remove this copyright and notice.
 * You cannot use this file any part without the express permission of the author.
 * All Rights Reserved</p>
 * @author Jjyo
 * @email jjyo@163.com
 * @version 1.0.0
 */

public class Maps {

	public static char mapArray[][];
	public static int x;
	public static int y;
	public static int w;
	public static int h;
	public static int tileSize;
	public final ImageManage imageManage;
	public String mapId;
	
	public Maps(ImageManage im,char mapArray[][],int w,int h,int tileSize,String mapId){
		this.imageManage=im;
		Maps.mapArray=mapArray ;
		Maps.x=0;
		Maps.y=0;
		Maps.w=w;
		Maps.h=h;
		Maps.tileSize=tileSize;
		this.mapId=mapId;
	}
	
	public Maps(ImageManage im,int w,int h,int tileSize,String mapId){
		this.imageManage=im;
		Maps.x=0;
		Maps.y=0;
		Maps.w=w;
		Maps.h=h;
		Maps.tileSize=tileSize;
		this.mapId=mapId;
	}
}

⌨️ 快捷键说明

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