#ifndef POINTLIGHT_H #define POINTLIGHT_H POINTLIGHT_H #include "Light.h" #include "util/Color.h" class PointLight : public Light { public: PointLight(); protected: }; #endif