17 lines
210 B
C++
Executable File
17 lines
210 B
C++
Executable File
|
|
#ifndef POINTLIGHT_H
|
|
#define POINTLIGHT_H POINTLIGHT_H
|
|
|
|
#include "Light.h"
|
|
|
|
class PointLight : public Light
|
|
{
|
|
public:
|
|
PointLight(const Vector & position);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|
|
|