diff options
Diffstat (limited to 'src/ft_hud_threads.c')
-rw-r--r-- | src/ft_hud_threads.c | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/ft_hud_threads.c b/src/ft_hud_threads.c new file mode 100644 index 0000000..c120dc9 --- /dev/null +++ b/src/ft_hud_threads.c @@ -0,0 +1,70 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* 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_ammo_back_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_ammo_back(clist); + pthread_exit(0x0); + return (0x0); +} + +void + *ft_minimap_back_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_minimap_back(clist); + pthread_exit(0x0); + return (0x0); +} + +void + *ft_map_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_map(clist->mlist.map, clist); + pthread_exit(0x0); + return (0x0); +} + +void + *ft_life_bar_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_life_bar(clist); + pthread_exit(0x0); + return (0x0); +} + +void + *ft_ammo_bar_thread(void *vargp) +{ + t_cub *clist; + + clist = (t_cub *)vargp; + ft_draw_ammo_bar(clist); + pthread_exit(0x0); + return (0x0); +} |