blob: 11fdaf54b9e134190454df3b0d030e645cf0985f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_draw_life_bar.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>
static void
ft_draw_green_life(uint16_t h, t_win *wl, t_cub *cl)
{
(void)h;
(void)wl;
(void)cl;
}
void
ft_draw_life_bar(t_win *wl, t_cub *cl)
{
(void)wl;
(void)cl;
ft_draw_green_life(1, wl, cl);
}
|