| 123456789101112131415161718192021 |
- #ifndef FONT_FILE_h
- #define FONT_FILE_h
- #include "common/Surface.h"
- #include "common/Vram.h"
- #include "common/File.h"
- class FontFile : public File
- {
- public:
- // explicit FontFile(const Ogre::String& file);
- explicit FontFile(File* pFile);
- FontFile(File* pFile, const u32& offset, const u32& length);
- FontFile(u8* pBuffer, const u32& offset, const u32& length);
- virtual ~FontFile(void);
- Surface* GetSurface(void);
- };
- #endif
|