26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* so_long.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/01/06 16:19:42 by adjoly #+# #+# */
|
|
/* Updated: 2024/01/06 17:07:29 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SO_LONG_H
|
|
# define SO_LONG_H
|
|
|
|
# include "MacroLibX/includes/mlx.h"
|
|
|
|
typedef struct s_window
|
|
{
|
|
void *mlx;
|
|
void *win;
|
|
void *img_win;
|
|
} t_window;
|
|
|
|
|
|
#endif |