/* ************************************************************************** */ /* */ /* :::::::: */ /* cub3d.h :+: :+: */ /* +:+ */ /* By: houtworm +#+ */ /* +#+ */ /* Created: 2023/10/26 10:46:35 by houtworm #+# #+# */ /* Updated: 2023/10/26 13:56:49 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef CUB3D_H # define CUB3D_H # include # include # include "libft/libft.h" # include "mlx/include/MLX42/MLX42.h" typedef struct s_varlist { mlx_t *mlx; //mlx instance mlx_image_t *img; //mlx img mlx_image_t *font[30]; //mlx font image int w; //actual window width used everywhere int h; //actual window height used everywhere } t_varlist; #endif