/* # ______ ____ ___ # | \/ ____| |___| # | | | \ | | #----------------------------------------------------------------------- # Copyright 2020, tyra - https://github.com/h4570/tyra # Licenced under Apache License 2.0 # Sandro Sobczyński */ #ifndef _TYRA_TEXTURE_REPOSITORY_ #define _TYRA_TEXTURE_REPOSITORY_ #include #include #include "../models/mesh.hpp" /** Class responsible for intializing draw env, textures and buffers */ class TextureRepository { public: TextureRepository(); ~TextureRepository(); private: }; #endif