fart/main/Material.h
Josh Holtrop 18c0c8d45f added diffuse and specular colors to Material, switched all "private:" to "protected:"
git-svn-id: svn://anubis/fart/trunk@69 7f9b0f55-74a9-4bce-be96-3c2cd072584d
2009-01-30 02:26:46 +00:00

22 lines
283 B
C++

#ifndef MATERIAL_H
#define MATERIAL_H MATERIAL_H
#include "util/Color.h"
class Material
{
public:
/* static members */
static const Material white;
Material();
protected:
Color m_diffuse_color;
Color m_specular_color;
};
#endif