/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_hud_threads.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/22 20:02:47 by rbousset #+# #+# */ /* Updated: 2020/02/22 20:02:48 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include 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); }