42_cub3d/include/global.h
2024-10-31 18:04:34 +01:00

25 lines
1 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* global.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mc <mc@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 17:06:31 by mc #+# #+# */
/* Updated: 2024/10/31 17:29:00 by mc ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GLOBAL_H
# define GLOBAL_H
# include "include.h"
# include "map.h"
extern void *g_mlx;
extern void *g_win;
extern t_player g_player;
extern t_map g_map;
#endif