diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-23 22:31:15 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-23 22:31:15 +0100 |
commit | 5ad03a84ee06712ef4331a173c710657da70d0d0 (patch) | |
tree | bc5cef668090ea62ddff826ca9f89dabaeedd50f /src/ft_hud_threads_next.c | |
parent | Some threads (diff) | |
download | 42-cub3d-5ad03a84ee06712ef4331a173c710657da70d0d0.tar.gz 42-cub3d-5ad03a84ee06712ef4331a173c710657da70d0d0.tar.bz2 42-cub3d-5ad03a84ee06712ef4331a173c710657da70d0d0.tar.xz 42-cub3d-5ad03a84ee06712ef4331a173c710657da70d0d0.tar.zst 42-cub3d-5ad03a84ee06712ef4331a173c710657da70d0d0.zip |
got work to do
Diffstat (limited to '')
-rw-r--r-- | src/ft_hud_threads_next.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ft_hud_threads_next.c b/src/ft_hud_threads_next.c new file mode 100644 index 0000000..e390050 --- /dev/null +++ b/src/ft_hud_threads_next.c @@ -0,0 +1,38 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_hud_threads.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/22 20:02:47 by rbousset #+# #+# */ +/* Updated: 2020/02/22 20:02:48 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <cub3d.h> +#include <stdint.h> +#include <pthread.h> + +void + *ft_health_cap_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_health_caption(clist); + pthread_exit(0x0); + return (0x0); +} + +void + *ft_ammo_cap_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_ammo_caption(clist); + pthread_exit(0x0); + return (0x0); +} + |