]> git.localhorst.tv Git - blank.git/blobdiff - src/app/Assets.hpp
textures
[blank.git] / src / app / Assets.hpp
index 4953ddbfcfd75fee41844cdad681b20496d1e0a4..6e1698a6fc94105d0893b2f1ee0259f80bf608dc 100644 (file)
@@ -6,8 +6,10 @@
 
 namespace blank {
 
+class ArrayTexture;
 class Font;
 class Sound;
+class Texture;
 
 class Assets {
 
@@ -16,10 +18,13 @@ public:
 
        Font LoadFont(const std::string &name, int size) const;
        Sound LoadSound(const std::string &name) const;
+       Texture LoadTexture(const std::string &name) const;
+       void LoadTexture(const std::string &name, ArrayTexture &, int layer) const;
 
 private:
        std::string fonts;
        std::string sounds;
+       std::string textures;
 
 };