mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-08 01:57:13 +00:00
22 lines
379 B
C++
22 lines
379 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
#include "app/linux/Iggy/include/rrCore.h"
|
|
|
|
class UITTFFont {
|
|
private:
|
|
std::uint8_t* pbData;
|
|
const std::string m_strFontName;
|
|
|
|
// uint32_t dwDataSize;
|
|
|
|
public:
|
|
UITTFFont(const std::string& name, const std::string& path,
|
|
S32 fallbackCharacter);
|
|
~UITTFFont();
|
|
|
|
std::string getFontName();
|
|
};
|