www.pudn.com > litwiz.rar > ent.java


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; 
	} 
 
}