#ifndef _TEXTURE_H_ #define _TEXTURE_H_ #include #include typedef struct { GLuint id; int width, height; } Texture; Texture *get_texture(char *path); #endif