diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_hooks_and_loops.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ft_hooks_and_loops.c b/src/ft_hooks_and_loops.c new file mode 100644 index 0000000..30d65f4 --- /dev/null +++ b/src/ft_hooks_and_loops.c @@ -0,0 +1,23 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_hooks_and_loops.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2020/02/09 20:16:25 by rbousset #+# ## ## #+# */ +/* Updated: 2020/02/09 20:16:27 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include <cub3d.h> +#include <mlx.h> + +void + ft_hooks_and_loops(t_win *wl, t_cub *cl) +{ + mlx_hook(wl->winptr, 2, 1L << 1, ft_key_event, cl); + mlx_hook(wl->winptr, 17, 0L, ft_click_close, cl); + mlx_loop(wl->wlx); +} |