wall_collision.c
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* wall_collision.c :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: ll-hotel <ll-hotel@student.42.fr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2024/10/21 17:15:11 by ll-hotel #+# #+# */ 9 /* Updated: 2024/10/21 17:15:34 by ll-hotel ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 #include "cub3D.h" 14 15 void collision_correction(t_cube *cube, t_player *player, t_vec2f *step) 16 { 17 (void)cube; 18 (void)player; 19 (void)step; 20 }