#ifndef LEDDA_TEXTURE_H #define LEDDA_TEXTURE_H struct Texture { unsigned int tex_id; int width; int height; }; Texture createTexture(const char* source_path); #endif