2024-09-10 16:27:06 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* cub3d.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: madumerg <madumerg@42angouleme.fr> +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2024/09/04 17:01:05 by madumerg #+# #+# */
|
2024-09-17 10:48:20 +02:00
|
|
|
/* Updated: 2024/09/17 10:40:27 by adjoly ### ########.fr */
|
2024-09-10 16:27:06 +02:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#ifndef CUB3D_H
|
|
|
|
# define CUB3D_H
|
|
|
|
|
2024-09-17 10:48:20 +02:00
|
|
|
# include "libft.h"
|
2024-09-10 16:27:06 +02:00
|
|
|
# include "mess_err.h"
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <math.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <fcntl.h>
|
2024-09-11 16:00:35 +02:00
|
|
|
# include <stdio.h>
|
2024-09-12 13:01:04 +02:00
|
|
|
# include "parsing.h"
|
2024-09-10 16:27:06 +02:00
|
|
|
|
|
|
|
#endif
|