#ifndef LOADER_H #define LOADER_H #include typedef struct { float x, y; float width, height; GLuint texture_id; } Sprite; GLuint load_texture(const char* path); #endif