]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Assets.hpp
centralize fonts
[blank.git] / src / app / Assets.hpp
index 6e1698a6fc94105d0893b2f1ee0259f80bf608dc..40623a21af6bdeb483e1f480eccdd3b3a3036a75 100644 (file)
@@ -1,13 +1,14 @@
 #ifndef BLANK_APP_ASSETS_HPP_
 #define BLANK_APP_ASSETS_HPP_
 
+#include "../graphics/Font.hpp"
+
 #include <string>
 
 
 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;
+
 };
 
 }