summaryrefslogtreecommitdiff
path: root/src/include/data_ress.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/data_ress.h')
-rw-r--r--src/include/data_ress.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/data_ress.h b/src/include/data_ress.h
index df09549..2513e81 100644
--- a/src/include/data_ress.h
+++ b/src/include/data_ress.h
@@ -4,12 +4,17 @@
#include "SDL/SDL.h"
struct styleRess {
- SDL_Surface **tiles, **objects, **objectMasks;
+ 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*/