aboutsummaryrefslogtreecommitdiff
path: root/include/FontLoader.hpp
blob: bff0f18575ff5897b4e56b4551abfffb68d133ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <string>

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);
}