#ifndef _LASER_BEAM_H_
#define _LASER_BEAM_H_


struct LaserBeam{


	double x, y; //current position
	double direction;//curent direction
	bool isVisible;//set true when the laser need to be drawn


	LaserBeam(){
		x = y = 0.0;
		isVisible = false; 
	}

};

#endif

