X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FAssets.hpp;fp=src%2Fapp%2FAssets.hpp;h=d9ab3d443592c0c491079069418caf8f4f5a5c74;hb=55dbd6b35a39888f245e247d2e140f141f918178;hp=0000000000000000000000000000000000000000;hpb=282d731ea8f10342efa82012028de7043b3dd639;p=blank.git diff --git a/src/app/Assets.hpp b/src/app/Assets.hpp new file mode 100644 index 0000000..d9ab3d4 --- /dev/null +++ b/src/app/Assets.hpp @@ -0,0 +1,25 @@ +#ifndef BLANK_APP_ASSETS_HPP_ +#define BLANK_APP_ASSETS_HPP_ + +#include + + +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