summaryrefslogtreecommitdiffstats
path: root/src/resources/image.h
blob: 92ef0408102a445c2112f626a940252294d8e6a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef IMAGE_H
#define IMAGE_H

#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