/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* so_long.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/06 16:19:42 by adjoly #+# #+# */ /* Updated: 2024/01/07 19:24:27 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef SO_LONG_H # define SO_LONG_H # include "MacroLibX/includes/mlx.h" # include "libft/libft.h" typedef struct s_window { void *mlx; void *win; } t_window; int ft_move_character(int key, void *param); int key_close(int key, void *param); #endif