#pragma once #include "CmPrerequisites.h" #include "CmRTTIType.h" #include "CmFontImportOptions.h" namespace CamelotFramework { class CM_EXPORT FontImportOptionsRTTI : public RTTIType { private: public: FontImportOptionsRTTI() { } virtual const String& getRTTIName() { static String name = "FontImportOptions"; return name; } virtual UINT32 getRTTIId() { return TID_FontImportOptions; } virtual std::shared_ptr newRTTIObject() { return cm_shared_ptr(); } }; }