mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 11:29:01 +02: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();
|
|
};
|