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-04-26 08:10:36 -04:00
|
|
|
/* Updated: 2023/04/26 14:10:23 by erey-bet ### ########.fr */
|
2023-04-26 06:55:14 -04:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#ifndef CUBE3D_H
|
|
|
|
# define CUBE3D_H
|
|
|
|
|
|
|
|
# include<sys/types.h>
|
2023-04-26 08:10:36 -04:00
|
|
|
# include <MLX42/MLX42.h>
|
2023-04-26 06:55:14 -04:00
|
|
|
|
|
|
|
// img: 0=Nord, 1=WEST, 2=SUD, 3=EAST;
|
|
|
|
|
|
|
|
typedef struct s_map
|
|
|
|
{
|
|
|
|
char **map;
|
|
|
|
size_t size_x;
|
|
|
|
size_t size_y;
|
|
|
|
void *img[4];
|
|
|
|
long color_bot;
|
|
|
|
long color_top;
|
|
|
|
} t_map;
|
|
|
|
|
|
|
|
t_map *map_parsing(char *path);
|
|
|
|
int start_game(t_map *map);
|
|
|
|
|
|
|
|
#endif
|