mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 02:53:36 +00:00
17 lines
294 B
C++
17 lines
294 B
C++
#pragma once
|
|
|
|
class UITTFFont {
|
|
private:
|
|
std::uint8_t* pbData;
|
|
const std::string m_strFontName;
|
|
|
|
// DWORD dwDataSize;
|
|
|
|
public:
|
|
UITTFFont(const std::string& name, const std::string& path,
|
|
S32 fallbackCharacter);
|
|
~UITTFFont();
|
|
|
|
std::string getFontName();
|
|
};
|