]> git.localhorst.tv Git - gong.git/blob - src/app/Assets.hpp
code, assets, and other stuff stolen from blank
[gong.git] / src / app / Assets.hpp
1 #ifndef GONG_APP_ASSETS_HPP_
2 #define GONG_APP_ASSETS_HPP_
3
4 #include "../graphics/Font.hpp"
5
6
7 namespace gong {
8 namespace app {
9
10 class AssetLoader;
11
12
13 struct Assets {
14
15         graphics::Font large_ui_font;
16         graphics::Font small_ui_font;
17
18         explicit Assets(const AssetLoader &);
19
20 };
21
22 }
23 }
24
25 #endif