/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_click_close.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:28:46 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:28:46 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include <libft.h> #include <cub3d.h> #include <mlx.h> #include <stdlib.h> int ft_click_close(int keycode, t_cub *clist) { (void)keycode; (void)clist; exit(0); return (0); }