Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
so_long/so_long.h

31 lines
1.2 KiB
C
Raw Normal View History

2024-01-06 17:15:02 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* so_long.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/06 16:19:42 by adjoly #+# #+# */
2024-01-08 13:33:55 +01:00
/* Updated: 2024/01/08 13:32:18 by adjoly ### ########.fr */
2024-01-06 17:15:02 +01:00
/* */
/* ************************************************************************** */
#ifndef SO_LONG_H
# define SO_LONG_H
# include "MacroLibX/includes/mlx.h"
2024-01-07 22:45:08 +01:00
# include "libft/libft.h"
2024-01-08 13:33:55 +01:00
# include <unistd.h>
# include <fcntl.h>
# include <stdlib.h>
2024-01-06 17:15:02 +01:00
typedef struct s_window
{
void *mlx;
void *win;
} t_window;
2024-01-07 22:45:08 +01:00
int ft_move_character(int key, void *param);
int key_close(int key, void *param);
2024-01-06 17:15:02 +01:00
#endif