]> git.localhorst.tv Git - blank.git/blob - src/app/Assets.hpp
set and display block type labels
[blank.git] / src / app / Assets.hpp
1 #ifndef BLANK_APP_ASSETS_HPP_
2 #define BLANK_APP_ASSETS_HPP_
3
4 #include <string>
5
6
7 namespace blank {
8
9 class Font;
10
11 class Assets {
12
13 public:
14         explicit Assets(const std::string &base);
15
16         Font LoadFont(const std::string &name, int size) const;
17
18 private:
19         std::string fonts;
20
21 };
22
23 }
24
25 #endif