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