Update flowchart, Add global SDL variables

- flowchart:
    - update menu.c
    - add notes for menu

- game.c:
    - add SDL variables to game struct,
     so menu.c can also render things to window
This commit is contained in:
jonny_jr9 2023-12-12 09:52:08 +01:00
parent cc4f8f169f
commit 4159d4ff17
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

@ -4,6 +4,7 @@
#include "snake.h"
#include "config.h"
#include "map.h"
#include "SDL.h"
// Enum that defines the current game state
@ -25,6 +26,8 @@ typedef struct gameData_t
int foodX, foodY; // current position of food
int lifesRemaining; // not implemented
int timestampLastCycle; // time last game cycle started
SDL_Renderer* renderer; // used by render.c and menu.c
SDL_Window *window; // used by render.c and menu.c
gameState_t gameState; // state the game is in
} gameData_t;