Adding the starting of cub

This commit is contained in:
Raphael 2024-10-30 17:35:35 +01:00
parent 3c74145832
commit 9415f843e7
7 changed files with 230 additions and 0 deletions

33
includes/cub3d.h Normal file
View file

@ -0,0 +1,33 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* cub3d.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/30 16:30:26 by rparodi #+# #+# */
/* Updated: 2024/10/30 17:01:03 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CUB3D_H
# define CUB3D_H
# include <stdio.h>
# include <math.h>
# include <fcntl.h>
# include <stdlib.h>
# include <sys/time.h>
# include <unistd.h>
# include <stdbool.h>
# include "message_error.h"
# ifndef BONUS
# define BONUS 0
# endif
bool ft_parse_args(int argc, char *argv[]);
int main(int argc, char *argv[]);
#endif