#ifndef IMAGE_H #define IMAGE_H #include #include "resource.h" struct image { struct resource res; SDL_Surface *image; }; struct image *img_png_get(const char *path); void img_png_free(struct image *image); #endif