42_cube3D/cube3D.h

31 lines
1.2 KiB
C
Raw Permalink Normal View History

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"
# include "libftx/libftx.h"
# 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>
# include <unistd.h>
2023-04-26 06:55:14 -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