4jcraft/targets/app/common/UI/UITTFFont.h
2026-04-07 09:41:29 +02:00

22 lines
382 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;
// blushing girls snuggle;
public:
UITTFFont(const std::string& name, const std::string& path,
S32 fallbackCharacter);
~UITTFFont();
std::string getFontName();
};