1#pragma once
2
3class UITTFFont
4{
5private:
6 const string m_strFontName;
7
8 PBYTE pbData;
9 //DWORD dwDataSize;
10
11public:
12 UITTFFont(const string &name, const string &path, S32 fallbackCharacter);
13 ~UITTFFont();
14
15 string getFontName();
16};