From e3d80fbb561d43e53d8fd7bac49f46dbadfd291e Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 24 Nov 2025 02:49:11 -0700 Subject: Working on things and broke something This reverts commit fc72bf3d757340382ad8e422eb31e701577544f8. --- src/map.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/map.h (limited to 'src/map.h') diff --git a/src/map.h b/src/map.h new file mode 100644 index 0000000..ce4e71e --- /dev/null +++ b/src/map.h @@ -0,0 +1,16 @@ +#include "utils.h" +#include "settings.h" + +#ifndef MAP_H +#define MAP_H + +typedef struct { + Rectangle rect; + bool isEnabled; + bool isFullSize; +} Map; + +void initMap(Map* map, const Settings* settings); +void updateMap(Map* map, Game* game); + +#endif -- cgit v1.2.3