18 lines
214 B
C++
18 lines
214 B
C++
|
|
#ifndef POINTLIGHT_H
|
|
#define POINTLIGHT_H POINTLIGHT_H
|
|
|
|
#include "Light.h"
|
|
#include "util/Color.h"
|
|
|
|
class PointLight : public Light
|
|
{
|
|
public:
|
|
PointLight();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif
|
|
|