From a19222c3f309105d9ea7d93fc4a95da6e5e68a33 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Sun, 9 Feb 2020 20:18:55 +0100 Subject: new file --- src/ft_hooks_and_loops.c | 23 +++++++++++++++++++++++ src/main.c | 4 +--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 src/ft_hooks_and_loops.c (limited to 'src') 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 +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2020/02/09 20:16:25 by rbousset #+# ## ## #+# */ +/* Updated: 2020/02/09 20:16:27 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include +#include + +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); +} diff --git a/src/main.c b/src/main.c index 77da0bc..39b5f7c 100644 --- a/src/main.c +++ b/src/main.c @@ -33,8 +33,6 @@ int if (ft_init_winlx(clist) < 0) return (ft_exit(3, clist)); ft_drawmap(clist); - mlx_hook(clist->wlist->winptr, 2, 1L << 1, ft_key_event, clist); - mlx_hook(clist->wlist->winptr, 17, 0L, ft_click_close, clist); - mlx_loop(clist->wlist->wlx); + ft_hooks_and_loops(clist->wlist, clist); return (0); } -- cgit v1.2.3