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

#include "SDL/SDL.h"

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

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

#endif /*DATA_RESS_H*/