#ifndef IMAGE_POOL_H #define IMAGE_POOL_H #include class ImageCached { public: std::vector &getPixels(){ return this->pixels; } unsigned int width = 0; unsigned int height = 0; int textureId = -1; private: std::vector pixels; }; #endif