summaryrefslogtreecommitdiff
path: root/Week1-Pacman/src/map.h
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2024-12-25 16:10:31 +0300
committerBoredGuy <osome3717@gmail.com>2024-12-25 16:10:31 +0300
commit6f3fe42d5888e70fe195b6bbf32b7bdd4059415b (patch)
tree024b054c282167c5d093cf3671368bb71d238002 /Week1-Pacman/src/map.h
parent7340dcda9151c50c84e283f102ea2f44dbf1443f (diff)
Started work on collisions
Diffstat (limited to 'Week1-Pacman/src/map.h')
-rw-r--r--Week1-Pacman/src/map.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Week1-Pacman/src/map.h b/Week1-Pacman/src/map.h
index 2161806..0721a94 100644
--- a/Week1-Pacman/src/map.h
+++ b/Week1-Pacman/src/map.h
@@ -8,6 +8,9 @@ struct map {
int width;
int height;
+
+ SDL_Rect* colliders;
+ int collider_count;
};
/*