blob: 52f49756c5609f3248922c2409cdfae3469f9717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#pragma once
namespace sf {
class Font;
class Texture;
}
namespace QuickMedia {
void set_resource_loader_root_path(const char *resource_root);
const char* get_resource_loader_root_path();
void set_use_system_fonts(bool use);
}
namespace QuickMedia::FontLoader {
enum class FontType {
LATIN,
LATIN_BOLD,
CJK,
SYMBOLS
};
// Note: not thread-safe
sf::Font* get_font(FontType font_type);
}
namespace QuickMedia::TextureLoader {
// Note: not thread-safe
sf::Texture* get_texture(const char *filepath);
}
|