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

20
sources/main.c Normal file
View file

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/30 16:30:03 by rparodi #+# #+# */
/* Updated: 2024/10/30 17:00:20 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "cub3d.h"
int main(int argc, char *argv[])
{
if (!ft_parse_args(argc, argv))
return (1);
return (0);
}