fart/main/Material.h
Josh Holtrop 04b8ea5f9e added main/Material module
git-svn-id: svn://anubis/fart/trunk@68 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-01-30 02:20:29 +00:00

19 lines
243 B
C++

#ifndef MATERIAL_H
#define MATERIAL_H MATERIAL_H
#include "util/Color.h"
class Material
{
public:
Material(const Color & rgb = Color::white);
static const Material white;
protected:
Color m_rgb;
};
#endif