#ifndef TEXTURE_H #define TEXTURE_H #include class Texture { public: unsigned int ID; Texture(const char* texturePath); void use(); }; #endif