ent.java

来自「litwizi j2me」· Java 代码 · 共 33 行

JAVA
33
字号
class ent
{
	public int x;
	public int y;
	public int z;
	public int i;
	public boolean moves;
	public boolean dirL;
	public boolean dirR;
	public boolean dirU;
	public boolean dirD;
	public int freeze;
	public int moveSpeed;
	public boolean flip;

	public ent(int xp, int yp, int zp)
	{
		this.x=xp;
		this.y=yp;
		this.z=zp;
		this.i=zp;
		this.moves=false;
		this.dirL=false;
		this.dirR=false;
		this.dirU=false;
		this.dirD=false;
		this.freeze=0;
		this.moveSpeed=0;
		this.flip=true;
	}

}

⌨️ 快捷键说明

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