FontFile.h 426 B

12345678910111213141516171819202122
  1. #ifndef FONT_FILE_H
  2. #define FONT_FILE_H
  3. #include "common/File.h"
  4. class FontFile : public File
  5. {
  6. public:
  7. FontFile( const Ogre::String& file );
  8. FontFile( File* file );
  9. FontFile( File* file, const u32 offset, const u32 length );
  10. FontFile( u8* buffer, const u32 offset, const u32 length );
  11. virtual ~FontFile();
  12. void Export( const Ogre::String& export_file, bool english );
  13. };
  14. #endif // FONT_FILE_H