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