fart/main/PointLight.h
Josh Holtrop 072bf75c04 added main/{Light,PointLight} modules
git-svn-id: svn://anubis/fart/trunk@48 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-01-26 16:05:23 +00:00

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