/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* collision.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: qmennen +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/22 14:40:47 by qmennen #+# #+# */ /* Updated: 2025/04/22 14:42:35 by qmennen ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef COLLISION_H # define COLLISION_H # include "cub3d.h" int collision_horizontal(t_map *map, t_player *player, float xa); int collision_vertical(t_map *map, t_player *player, float ya); #endif