/* light.h * * Lights light the scene. * * Eryn Wells */ #ifndef __LIGHT_H__ #define __LIGHT_H__ #include "basics.h" #include "object.h" class Light : public Object { public: Light(); Light(float i); Light(Vector3 o, float i); float get_intensity() const; void set_intensity(float i); private: float intensity; }; #endif