#ifndef FILE_TEXTURE_H #define FILE_TEXTURE_H #include "client/rendering/wrapper/Texture.h" class FileTexture final { Texture texture; public: FileTexture(const char* path); void bind(int index) const; }; #endif