CmFontPlugin.cpp 312 B

12345678910111213141516
  1. #include "CmFontPrerequisites.h"
  2. #include "CmFontImporter.h"
  3. namespace CamelotEngine
  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. }
  14. }