Files
Towards/external/tracy/profiler/src/Fonts.hpp
T

21 lines
293 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#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