Files
Towards/external/tracy/profiler/src/Fonts.hpp
T
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

21 lines
293 B
C++

#ifndef __FONTS_HPP__
#define __FONTS_HPP__
struct ImFont;
struct FontData
{
ImFont* normal;
ImFont* mono;
ImFont* bold;
ImFont* boldItalic;
ImFont* italic;
};
extern FontData g_fonts;
extern float FontNormal, FontSmall, FontBig;
void LoadFonts( float scale );
#endif