summaryrefslogtreecommitdiff
path: root/src/include/data_ress.h
blob: b09c996b32dc39078b3bf36040bec4275b46deb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef DATA_RESS_H
#define DATA_RESS_H

#include "SDL/SDL.h"

struct styleRess {
	SDL_Surface **tiles, **objects, **objectMasks, **lemmingAnims;
};

struct miscRess {
	SDL_Surface **lemmingAnims, **lemmingMasks, **lemmingImasks, **icons;
	SDL_Surface *font1, *font2, *countdown, *cursor, *explode;
};

// Image ressources loaded from files referenced in the style INI file
typedef struct {
	struct styleRess style;
	struct miscRess misc;
} gameRess_t;

#endif /*DATA_RESS_H*/