diff options
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 011a4d0..7c512b8 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -11,27 +11,27 @@ /* / */ /* ************************************************************************** */ -#ifndef CUB3D_H -#define CUB3D_H +# ifndef CUB3D_H +# define CUB3D_H #include <stddef.h> #include <stdint.h> -#ifndef FT_W_KEY -#define FT_W_KEY 13 -#endif -#ifndef FT_A_KEY -#define FT_A_KEY 0 -#endif -#ifndef FT_S_KEY -#define FT_S_KEY 1 -#endif -#ifndef FT_D_KEY -#define FT_D_KEY 2 -#endif -#ifndef FT_ESC_KEY -#define FT_ESC_KEY 53 -#endif +# ifndef FT_W_KEY +# define FT_W_KEY 13 +# endif +# ifndef FT_A_KEY +# define FT_A_KEY 0 +# endif +# ifndef FT_S_KEY +# define FT_S_KEY 1 +# endif +# ifndef FT_D_KEY +# define FT_D_KEY 2 +# endif +# ifndef FT_ESC_KEY +# define FT_ESC_KEY 53 +# endif typedef struct s_win { @@ -86,4 +86,4 @@ int ft_init_winlx(t_cub *clist); void ft_drawmap(t_cub *clist); void ft_print_list(t_cub *clist); -#endif +# endif |