]> git.localhorst.tv Git - blank.git/blob - src/app/Assets.hpp
move RandomWalk into new "ai" module
[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 class Sound;
11
12 class Assets {
13
14 public:
15         explicit Assets(const std::string &base);
16
17         Font LoadFont(const std::string &name, int size) const;
18         Sound LoadSound(const std::string &name) const;
19
20 private:
21         std::string fonts;
22         std::string sounds;
23
24 };
25
26 }
27
28 #endif