37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* cub3d.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/11/25 19:47:02 by aortigos #+# #+# */
|
|
/* Updated: 2025/11/25 19:50:36 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef CUB3D_H
|
|
|
|
# define CUB3D_H
|
|
|
|
# include <unistd.h>
|
|
# include <stdlib.h>
|
|
# include <math.h>
|
|
# include "../lib/mlx/include/MLX42/MLX42.h"
|
|
# include "../lib/libft/libft.h"
|
|
# include "../lib/ft_printf/ft_printf.h"
|
|
# include "../lib/gnl/get_next_line.h"
|
|
|
|
# define S_W 800
|
|
# define S_H 600
|
|
# define FOV 60
|
|
# define PLAYER_SPEED 3
|
|
|
|
|
|
// Functions
|
|
|
|
int read_map(char *av, t_data *map, int *count);
|
|
|
|
|
|
|
|
#endif |