infos affichees ajout zoom et deplacement

This commit is contained in:
hugogogo
2021-07-24 10:42:04 +02:00
parent 99c95c1cf1
commit 5474a870f0
10 changed files with 31 additions and 20 deletions

View File

@@ -1,11 +1,12 @@
#include "fdf.h"
int **parse_map(t_fdf *fdf)
int **parse_map(t_fdf *fdf, char **av)
{
int **map;
int i;
int j;
(void)av;
map = ft_calloc(10, sizeof(map));
i = -1;
while (++i < 10)