]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Assets.hpp
set and display block type labels
[blank.git] / src / app / Assets.hpp
diff --git a/src/app/Assets.hpp b/src/app/Assets.hpp
new file mode 100644 (file)
index 0000000..d9ab3d4
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef BLANK_APP_ASSETS_HPP_
+#define BLANK_APP_ASSETS_HPP_
+
+#include <string>
+
+
+namespace blank {
+
+class Font;
+
+class Assets {
+
+public:
+       explicit Assets(const std::string &base);
+
+       Font LoadFont(const std::string &name, int size) const;
+
+private:
+       std::string fonts;
+
+};
+
+}
+
+#endif