Cub3D/ParsingCub3D/includes/parsercub3D.h
2022-06-07 20:15:32 +02:00

19 lines
283 B
C

#ifndef PARSERCUB3D
# define PARSERCUB3D
# include <unistd.h>
# include <stdio.h>
# include "../libft/libft.h"
# include "../gnl/get_next_line.h"
# include <sys/types.h>
typedef struct s_root {
int size;
int height;
int error;
} t_root;
int main(int ac, char **av);
#endif