diff --git a/map/map.h b/map/map.h index caad461..1640cb7 100644 --- a/map/map.h +++ b/map/map.h @@ -8,6 +8,7 @@ typedef struct s_map { char **map; void *img[4]; + void *img_path[4]; long long color_bot; long long color_top; size_t size_x; @@ -17,4 +18,6 @@ typedef struct s_map char direction; } t_map; +void map_freer(t_map *map); + #endif