diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 20:18:55 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-09 20:18:55 +0100 |
commit | a19222c3f309105d9ea7d93fc4a95da6e5e68a33 (patch) | |
tree | 92044dfc9ae5aa4a38280cf38b95e75be5210593 /src/main.c | |
parent | Better names (diff) | |
download | 42-cub3d-a19222c3f309105d9ea7d93fc4a95da6e5e68a33.tar.gz 42-cub3d-a19222c3f309105d9ea7d93fc4a95da6e5e68a33.tar.bz2 42-cub3d-a19222c3f309105d9ea7d93fc4a95da6e5e68a33.tar.xz 42-cub3d-a19222c3f309105d9ea7d93fc4a95da6e5e68a33.tar.zst 42-cub3d-a19222c3f309105d9ea7d93fc4a95da6e5e68a33.zip |
new file
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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); } |