mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-25 03:03:50 +00:00
13 lines
159 B
C
13 lines
159 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class UITTFFont
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
PBYTE pbData;
|
||
|
|
//DWORD dwDataSize;
|
||
|
|
|
||
|
|
public:
|
||
|
|
UITTFFont(const string &path, S32 fallbackCharacter);
|
||
|
|
~UITTFFont();
|
||
|
|
};
|