Radium Engine  1.5.0
MaterialData.cpp
1 #include <Core/Asset/MaterialData.hpp>
2 #include <Core/Utils/Log.hpp>
3 
4 namespace Ra {
5 namespace Core {
6 namespace Asset {
7 
9 MaterialData::MaterialData( const std::string& name, const std::string& type ) :
10  AssetData( name ), m_type( type ) {}
11 
12 MaterialData::~MaterialData() {}
13 
16  using namespace Core::Utils; // log
17  LOG( logERROR ) << "MaterialData : unkonwn material type : " << m_type;
18 }
19 
20 } // namespace Asset
21 } // namespace Core
22 } // namespace Ra
virtual void displayInfo() const
DEBUG.
MaterialData(const std::string &name="", const std::string &type="AbstractMaterial")
MATERIAL DATA.
Definition: MaterialData.cpp:9
Definition: Cage.cpp:3