blob: 36cc8324d0cd14925a20e45d7b34c9de3b0b7ce0 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_basic_keys.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fmoenne- <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:43:55 by fmoenne- #+# #+# */
/* Updated: 2020/02/14 17:43:56 by fmoenne- ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <cub3d.h>
#include <stdint.h>
void ft_draw_wall(t_cub *clist, int x, int draw_start, int draw_end)
{
clist->img.ptr[/*calcul a la con*/x];
/*
* faire calcul wola
*
*
*
*/
}
|