imageinfo.java

来自「MIDP1.0的横板游戏源码」· Java 代码 · 共 22 行

JAVA
22
字号
package game;
import tool.*;
public class ImageInfo implements AVLbuff{
	long id=0;
	public int xmod=0;
	public int ymod=0;
	public int width=0;
	public int height=0;
	public int centermod=0;
	public ImageInfo(long _id,int _xmod,int _ymod,int _width,int _height,int _centermod){
		id=_id;
		xmod=_xmod;
		ymod=_ymod;
		width=_width;
		height=_height;
		centermod=_centermod;
	}
	public long getAVLnum(){
		return id;
	}
}

⌨️ 快捷键说明

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