Files
BluTac10-Xbox_Neo/Minecraft.Client/Common/UI/UITTFFont.h
Fireblade 0ed96f1592 fix: resolve merge conflicts and integrate XML locale updates (#1)
Resolve merge conflicts across multiple components
Merge and synchronize XML locale changes
Ensure consistency between string resources and localization files
Minor fixes to restore successful builds after merge
2026-04-11 02:47:59 +03:00

19 lines
309 B
C++

#pragma once
class UITTFFont
{
private:
const string m_strFontName;
PBYTE pbData;
bool m_loaded;
//DWORD dwDataSize;
public:
UITTFFont(const string &name, const string &path, S32 fallbackCharacter, bool registerAsDefaultFonts = true);
~UITTFFont();
string getFontName();
bool isLoaded() const;
};