Files
MinecraftConsoles/Minecraft.Client/Common/UI/UITTFFont.h

17 lines
233 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
class UITTFFont
{
private:
const string m_strFontName;
2026-03-01 12:16:08 +08:00
PBYTE pbData;
//DWORD dwDataSize;
public:
UITTFFont(const string &name, const string &path, S32 fallbackCharacter);
2026-03-01 12:16:08 +08:00
~UITTFFont();
string getFontName();
2026-03-01 12:16:08 +08:00
};