diff options
Diffstat (limited to '')
-rw-r--r-- | gui/resources.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gui/resources.hpp b/gui/resources.hpp index 874836e52..3cb528176 100644 --- a/gui/resources.hpp +++ b/gui/resources.hpp @@ -38,6 +38,14 @@ typedef enum { class FontResource : public Resource { public: + enum Type + { + TYPE_TWRP, +#ifndef TW_DISABLE_TTF + TYPE_TTF, +#endif + }; + FontResource(xml_node<>* node, ZipArchive* pZip); virtual ~FontResource(); @@ -46,6 +54,7 @@ public: protected: void* mFont; + Type m_type; }; class ImageResource : public Resource |