4jcraft/Minecraft.Client/Platform/Common/UI/UITTFFont.h
2026-03-22 04:25:54 -05:00

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();
};