diff options
Diffstat (limited to '')
-rw-r--r-- | src/ft_draw_hud.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ft_draw_hud.c b/src/ft_draw_hud.c index 6c05f31..1564e2e 100644 --- a/src/ft_draw_hud.c +++ b/src/ft_draw_hud.c @@ -10,4 +10,17 @@ /* */ /* ************************************************************************** */ +#include <cub3d.h> +#include <mlx.h> +static void +ft_draw_hud_back(t_win *wl, t_cub *cl) +{ +} + +void + ft_draw_hud(t_cub *clist) +{ + ft_draw_hud_back(clist->wlist, clist); + ft_draw_map(clist->mlist->map, clist); +} |