Add virtual destructor to CMATERIAL
CMATERIAL is a base class, so it should have a virtual constructor to prevent undefined behavior (and silence warnings).
This commit is contained in:
parent
6ba8dcc121
commit
c21e96bcf9
|
@ -175,6 +175,8 @@ public:
|
|||
float aTransparency,
|
||||
float aReflection );
|
||||
|
||||
virtual ~CMATERIAL() {}
|
||||
|
||||
const SFVEC3F &GetAmbientColor() const { return m_ambientColor; }
|
||||
const SFVEC3F &GetEmissiveColor() const { return m_emissiveColor; }
|
||||
const SFVEC3F &GetSpecularColor() const { return m_specularColor; }
|
||||
|
|
Loading…
Reference in New Issue