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