4jcraft/minecraft/Minecraft.Client/Common/Source Files/UI/UITTFFont.h
2026-03-31 13:50:13 -05:00

22 lines
392 B
C++

#pragma once
#include <cstdint>
#include <string>
#include "Minecraft.Client/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();
};