29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* global.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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
|