import light;

class globals
{
	public PointLight Light = new PointLight(1000,100,4);
	public static long[] ZBuffer;
	public static long ZTrans;
	public int XSTEP_PREC;
	public int ZSTEP_PREC;

	public globals()
	{
		XSTEP_PREC = 10;
		ZSTEP_PREC = 26;
	} // globals()

};
