aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_hud.c
blob: 1564e2e3ad12cb394ea597295d28abb112b68793 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_draw_hud.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 <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);
}