Files
2026-03-22 11:44:26 -05:00

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();
};