4jcraft/Minecraft.Client/Platform/Common/UI/UITTFFont.h
2026-03-11 15:38:44 +11:00

15 lines
192 B
C++

#pragma once
#include <cstdint>
class UITTFFont
{
private:
std::uint8_t *pbData;
//DWORD dwDataSize;
public:
UITTFFont(const std::string &path, S32 fallbackCharacter);
~UITTFFont();
};