42_cube3D/cube3D.h

35 lines
1.2 KiB
C
Raw 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 #+# #+# */
/* Updated: 2023/04/26 14:18:50 by erey-bet ### ########.fr */
2023-04-26 06:55:14 -04:00
/* */
/* ************************************************************************** */
#ifndef CUBE3D_H
# define CUBE3D_H
# include <sys/types.h>
# include "MLX42/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