mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-05-26 04:44:40 +00:00
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
19 lines
309 B
C++
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;
|
|
};
|