#ifndef TEXTURE_H #define TEXTURE_H #include #include #include // IWYU pragma: no_forward_declare Cache class Texture { public: explicit Texture(const std::filesystem::path & fileName); static Cache cachedTexture; void Bind() const; private: glTexture m_texture; }; #endif