-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinits2.c
25 lines (23 loc) · 1.13 KB
/
inits2.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* inits2.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jferrer- <jferrer-@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/18 13:24:33 by jferrer- #+# #+# */
/* Updated: 2022/07/18 13:24:33 by jferrer- ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3D.h"
void init_mapvalidator_struct(t_mlx *mlx)
{
mlx->mapvars.no = NULL;
mlx->mapvars.so = NULL;
mlx->mapvars.we = NULL;
mlx->mapvars.ea = NULL;
mlx->mapvars.f = NULL;
mlx->mapvars.c = NULL;
mlx->mapvars.ft = NULL;
mlx->mapvars.ct = NULL;
}