mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 21:37:14 +00:00
15 lines
192 B
C++
15 lines
192 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class UITTFFont
|
|
{
|
|
private:
|
|
std::uint8_t *pbData;
|
|
//DWORD dwDataSize;
|
|
|
|
public:
|
|
UITTFFont(const std::string &path, S32 fallbackCharacter);
|
|
~UITTFFont();
|
|
};
|