blob: 65d314acb6aaa0d6e1b6e86d3021824604bd69cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_click_close.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: joelecle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:28:46 by joelecle #+# #+# */
/* Updated: 2020/02/14 17:28:46 by joelecle ### ########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;
clist->clickclose = 1;
return (ft_exit(0, clist));
}
|