diff options
Diffstat (limited to 'src/ft_draw_life_bar.c')
-rw-r--r-- | src/ft_draw_life_bar.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ft_draw_life_bar.c b/src/ft_draw_life_bar.c new file mode 100644 index 0000000..ae02edb --- /dev/null +++ b/src/ft_draw_life_bar.c @@ -0,0 +1,16 @@ +#include <cub3d.h> +#include <stdint.h> + +void + ft_draw_life_bar(size_t map_w, uint16_t scale, int8_t life, t_cub *cl) +{ + (void)map_w; + (void)scale; + (void)life; + (void)cl; + uint32_t x; + uint32_t y; + int32_t col; + + col = 0x00229037; +} |