mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
21 lines
1 KiB
C
21 lines
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* zombie_checker.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tchampio <tchampio@student.42lehavre.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/09/15 13:09:54 by tchampio #+# #+# */
|
|
/* Updated: 2025/09/15 13:10:44 by tchampio ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef ZOMBIE_CHECKER_H
|
|
# define ZOMBIE_CHECKER_H
|
|
|
|
# include "ray.h"
|
|
# include "../cub3d_data.h"
|
|
|
|
void check_for_zombies(t_ray *ray, t_cub3d_data *data);
|
|
|
|
#endif // ZOMBIE_CHECKER_H
|