2023-04-26 06:55:14 -04:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
|
|
|
/* cube3D.h :+: :+: :+: */
|
|
|
|
/* +:+ +:+ +:+ */
|
|
|
|
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
|
|
|
/* +#+#+#+#+#+ +#+ */
|
|
|
|
/* Created: 2023/04/26 12:34:04 by erey-bet #+# #+# */
|
2023-06-12 08:31:59 -04:00
|
|
|
/* Updated: 2023/06/12 14:31:28 by cchauvet ### ########.fr */
|
2023-04-26 06:55:14 -04:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#ifndef CUBE3D_H
|
|
|
|
# define CUBE3D_H
|
|
|
|
|
2023-05-05 07:51:11 -04:00
|
|
|
# include "map/parsing.h"
|
2023-05-05 07:35:52 -04:00
|
|
|
# include "map/map.h"
|
2023-04-27 09:13:32 -04:00
|
|
|
# include "libftx/libftx.h"
|
2023-04-26 08:19:25 -04:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include "MLX42/include/MLX42/MLX42.h"
|
2023-04-26 08:58:24 -04:00
|
|
|
# include <X11/keysym.h>
|
|
|
|
# include <X11/X.h>
|
|
|
|
# include <stdlib.h>
|
2023-04-26 09:45:21 -04:00
|
|
|
# include <stdio.h>
|
2023-04-27 09:13:32 -04:00
|
|
|
# include <unistd.h>
|
2023-04-26 06:55:14 -04:00
|
|
|
|
2023-04-27 09:13:32 -04:00
|
|
|
/*INIT*/
|
2023-05-03 11:48:36 -04:00
|
|
|
int start_game(t_map map);
|
2023-04-26 06:55:14 -04:00
|
|
|
|
|
|
|
#endif
|