fart/shapes/Shape.cc
Josh Holtrop 7f9b8b913a added Shape::~Shape() to work around compiler warnings
git-svn-id: svn://anubis/fart/trunk@101 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-02-11 17:11:30 +00:00

13 lines
135 B
C++
Executable File

#include "Shape.h"
Shape::Shape()
{
m_transparency = 0.0;
m_material = new Material(Material::white);
}
Shape::~Shape()
{
}