CmFontPlugin.cpp 337 B

123456789101112131415161718
  1. #include "CmFontPrerequisites.h"
  2. #include "CmFontImporter.h"
  3. namespace CamelotFramework
  4. {
  5. extern "C" CM_FONT_EXPORT const String& getPluginName()
  6. {
  7. static String pluginName = "FontImporter";
  8. return pluginName;
  9. }
  10. extern "C" CM_FONT_EXPORT void* loadPlugin()
  11. {
  12. FontImporter::startUp();
  13. return nullptr;
  14. }
  15. }