#pragma once #include namespace sf { class Font; } namespace QuickMedia::FontLoader { enum class FontType { LATIN, LATIN_BOLD, CJK, EMOJI }; // Note: not thread-safe sf::Font* get_font(FontType font_type); }