diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-28 10:31:16 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-04-28 10:31:16 -0400 |
commit | 2e026aff928b30267a39ef6fdeec3e43e9f106e6 (patch) | |
tree | b787550264cb3f1a88401f0240968c99b5138237 /include/texture.hpp | |
parent | 53800e07513f4a625ba70ff7d805d158a6b42121 (diff) |
New inventory system
Diffstat (limited to 'include/texture.hpp')
-rw-r--r-- | include/texture.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/texture.hpp b/include/texture.hpp index 0611ded..99d2d84 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -61,6 +61,17 @@ public: std::vector<GLuint> image; /** + * Contains the dimensions of each texture in the vector + */ + //TODO + //std::vector<vec2> imageDim; + + /** + * Stores the location of all the images + */ + std::vector<std::string> texLoc; + + /** * Populates the image array from a list of strings, with each string as a * separate argument. */ |