summaryrefslogtreecommitdiff
path: root/src/include/data_localgame.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/data_localgame.h')
-rw-r--r--src/include/data_localgame.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/data_localgame.h b/src/include/data_localgame.h
index b4716f7..989444b 100644
--- a/src/include/data_localgame.h
+++ b/src/include/data_localgame.h
@@ -10,7 +10,7 @@
// Ensemble des buffers graphiques du jeu (sauf l'écran)
typedef struct {
- SDL_Surface *screen, *terrain, *stencil, *tmpSurf;
+ SDL_Surface *terrain, *stencil, *tmpSurf;
} gameGraphSurfaces_t;
// Gestion de l'écran et de la caméra
@@ -45,7 +45,9 @@ struct gameObjectState {
};
typedef struct {
- int objCount;
+ int objCount; // allObj array item count
+ // allObj is a list of all objects of the map (objects, lemmings, other GUI objects, all except cursor)
+ // cursor is the mouse cursor for selecting lemmings
struct gameObjectState *allObj, cursor;
} gameObjectsState_t;