virtual ZRESULT addMaterialClass( LPCTSTR pszClassName, 
                                  LPCTSTR pszTitle, 
                                  LPCTSTR pszDesc=NULL)=0;

Description

Registers class name that implements rend::IMaterial interface. You specify a user-friendly title of material and optionally a short description.

Parameters:
pszClassName
Fully-qualified material class name to register. Plug-in should export this class correctly, so it's available for core::IRepository::createSharedClass method.
pszTitle
User-friendly title of material.
pszDesc
Optional argument with material description string.
See Also:
Interface overview and methods
getMaterialClass method
rend::IMaterial interface