the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 16 lines 233 B view raw
1#pragma once 2 3class UITTFFont 4{ 5private: 6 const string m_strFontName; 7 8 PBYTE pbData; 9 //DWORD dwDataSize; 10 11public: 12 UITTFFont(const string &name, const string &path, S32 fallbackCharacter); 13 ~UITTFFont(); 14 15 string getFontName(); 16};