Add count_sprites function declaration to parser.h

This commit is contained in:
Quinten 2025-06-10 15:51:02 +02:00
parent 3c4b3803c9
commit 0eb918e40b

View File

@ -6,7 +6,7 @@
/* By: qmennen <qmennen@student.codam.nl> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/19 14:41:55 by whaffman #+# #+# */
/* Updated: 2025/06/10 15:46:42 by qmennen ### ########.fr */
/* Updated: 2025/06/10 15:49:46 by qmennen ### ########.fr */
/* */
/* ************************************************************************** */
@ -49,5 +49,6 @@ int find_player_or_empty(t_map *map, int *x, int *y);
int floodfill(t_map *map, int x, int y);
t_sprite make_sprite(t_sprite_lib *def, double x, double y);
int parse_map_line_sprites(char *line, t_game *game, int y);
int count_sprites(char *line);
#endif