add FontManager::get_mono_font()

This commit is contained in:
Josh Holtrop 2014-06-22 21:25:50 -04:00
parent 076e2a51d7
commit dfbbd04862

View File

@ -13,6 +13,7 @@ namespace jes
public: public:
bool load(); bool load();
FontRef load_font(const char * fname, size_t size); FontRef load_font(const char * fname, size_t size);
FontRef get_mono_font() { return m_mono_font; }
protected: protected:
FT_Library m_ft; FT_Library m_ft;
FontRef m_mono_font; FontRef m_mono_font;