XmlFontsFile.h 252 B

12345678910111213141516171819
  1. #ifndef XML_FONTS_FILE_H
  2. #define XML_FONTS_FILE_H
  3. #include "XmlFile.h"
  4. class XmlFontsFile : public XmlFile
  5. {
  6. public:
  7. XmlFontsFile( const Ogre::String& file );
  8. virtual ~XmlFontsFile();
  9. void LoadFonts();
  10. };
  11. #endif // XML_FONTS_FILE_H