diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 19:34:31 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 19:34:31 +0200 |
commit | 172fc25127f57b6b405de41c02987ad8c3a40c95 (patch) | |
tree | 7a7153804f7f0e87f3bea96159563a8fab3af15a /minilibx-linux/mlx.h | |
parent | Fine (diff) | |
download | 42-cub3d-172fc25127f57b6b405de41c02987ad8c3a40c95.tar.gz 42-cub3d-172fc25127f57b6b405de41c02987ad8c3a40c95.tar.bz2 42-cub3d-172fc25127f57b6b405de41c02987ad8c3a40c95.tar.xz 42-cub3d-172fc25127f57b6b405de41c02987ad8c3a40c95.tar.zst 42-cub3d-172fc25127f57b6b405de41c02987ad8c3a40c95.zip |
Libx update, click close should work
Diffstat (limited to '')
-rw-r--r-- | minilibx-linux/mlx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/minilibx-linux/mlx.h b/minilibx-linux/mlx.h index af6af12..951871c 100644 --- a/minilibx-linux/mlx.h +++ b/minilibx-linux/mlx.h @@ -126,6 +126,10 @@ int mlx_do_key_autorepeatoff(void *mlx_ptr); int mlx_do_key_autorepeaton(void *mlx_ptr); int mlx_do_sync(void *mlx_ptr); +int mlx_mouse_move(void *mlx_ptr, void *win_ptr, int x, int y); +int mlx_mouse_hide(void *mlx_ptr, void *win_ptr); +int mlx_mouse_show(void *mlx_ptr, void *win_ptr); + int mlx_get_screen_size(void *mlx_ptr, int *sizex, int *sizey); #endif /* MLX_H */ |