/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* global.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/31 17:06:31 by mcolonna #+# #+# */ /* Updated: 2024/10/31 18:11:08 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef GLOBAL_H # define GLOBAL_H # include "include.h" # include "map.h" /// @brief mlx connection identifier extern void *g_mlx; /// @brief Identifier to the opened window extern void *g_win; /// @brief Current map extern t_map g_map; #endif