From 06163949b116123c75834b64f05ddf0597fa17bc Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Sun, 23 Feb 2020 16:30:58 +0100 Subject: New file for life bars drawing --- src/ft_draw_life_bar.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/ft_draw_life_bar.c (limited to 'src/ft_draw_life_bar.c') 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 +#include + +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; +} -- cgit v1.2.3