class PointLight
{
	public float X,Y,Z;

	public PointLight(float i, float j, float k)
	{
		X = i;
		Y = j;
		Z = k;
	}// PointLight()
};
