X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FAssets.hpp;fp=src%2Fapp%2FAssets.hpp;h=40623a21af6bdeb483e1f480eccdd3b3a3036a75;hb=5cd73a8f2b40e59ec13aa2a6af33bc8e2a6b9a6c;hp=6e1698a6fc94105d0893b2f1ee0259f80bf608dc;hpb=f5e5e8522b94a6b81a137d4bca7665ef15bcd2c6;p=blank.git diff --git a/src/app/Assets.hpp b/src/app/Assets.hpp index 6e1698a..40623a2 100644 --- a/src/app/Assets.hpp +++ b/src/app/Assets.hpp @@ -1,13 +1,14 @@ #ifndef BLANK_APP_ASSETS_HPP_ #define BLANK_APP_ASSETS_HPP_ +#include "../graphics/Font.hpp" + #include namespace blank { class ArrayTexture; -class Font; class Sound; class Texture; @@ -26,6 +27,11 @@ private: std::string sounds; std::string textures; +public: + // common assets shared by may states + Font large_ui_font; + Font small_ui_font; + }; }