18 lines
273 B
C++
Executable File
18 lines
273 B
C++
Executable File
|
|
#ifndef POINTLIGHT_H
|
|
#define POINTLIGHT_H POINTLIGHT_H
|
|
|
|
#include "Light.h"
|
|
#include "util/Color.h"
|
|
|
|
class PointLight : public Light
|
|
{
|
|
public:
|
|
PointLight(const Vector & position, const Color & color = Color::white);
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif
|
|
|