10 lines
130 B
C++
10 lines
130 B
C++
|
|
#include "Material.h"
|
|
|
|
const Material Material::white(Color::white);
|
|
|
|
Material::Material(const Color & rgb)
|
|
{
|
|
m_rgb = rgb;
|
|
}
|