XmlFontFile.h 276 B

1234567891011121314151617181920
  1. #ifndef XML_FONT_FILE_H
  2. #define XML_FONT_FILE_H
  3. #include "UiWidget.h"
  4. #include "XmlFile.h"
  5. class XmlFontFile : public XmlFile
  6. {
  7. public:
  8. explicit XmlFontFile( const Ogre::String& file );
  9. virtual ~XmlFontFile();
  10. void LoadFont();
  11. };
  12. #endif // XML_FONT_FILE_H