fart/main/PointLight.cc
Josh Holtrop e0d545a6b7 added util/Color module, updated Light and PointLight
git-svn-id: svn://anubis/fart/trunk@49 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-01-26 20:08:42 +00:00

8 lines
135 B
C++
Executable File

#include "PointLight.h"
PointLight::PointLight(const Vector & position, const Color & color)
: Light(position, color)
{
}