diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/texture.hpp | 3 | ||||
-rw-r--r-- | include/world.hpp | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/include/texture.hpp b/include/texture.hpp index 0684cb7..9531d9d 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -159,6 +159,9 @@ public: */ inline const vec2& getTextureDim(void) { return position->getDim(); } + + inline unsigned int size(void) + { return textures.size(); } }; /** diff --git a/include/world.hpp b/include/world.hpp index bfd0464..a7096a8 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -117,11 +117,6 @@ private: static std::string bgmCurrent; /** - * Paths of files to get stylized textures from. - */ - static std::vector<std::string> bgFiles; - - /** * Allows for iteration between background textures, for rendering. */ static TextureIterator bgTex; |