diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 19:32:46 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 19:32:46 +0100 |
commit | 1432b9d3d519d427499a3864796b7a5a5d79eea3 (patch) | |
tree | de84496fbda69f82bcc1e27b48712a641ff55726 /inc/cub3d.h | |
parent | Better color for the player (diff) | |
download | 42-cub3d-1432b9d3d519d427499a3864796b7a5a5d79eea3.tar.gz 42-cub3d-1432b9d3d519d427499a3864796b7a5a5d79eea3.tar.bz2 42-cub3d-1432b9d3d519d427499a3864796b7a5a5d79eea3.tar.xz 42-cub3d-1432b9d3d519d427499a3864796b7a5a5d79eea3.tar.zst 42-cub3d-1432b9d3d519d427499a3864796b7a5a5d79eea3.zip |
It moves
Diffstat (limited to 'inc/cub3d.h')
-rw-r--r-- | inc/cub3d.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 54973e8..8d3b39a 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -18,19 +18,19 @@ #include <stdint.h> # ifndef FT_W_KEY -# define FT_W_KEY 13 +# define FT_W_KEY 13 # endif # ifndef FT_A_KEY -# define FT_A_KEY 0 +# define FT_A_KEY 0 # endif # ifndef FT_S_KEY -# define FT_S_KEY 1 +# define FT_S_KEY 1 # endif # ifndef FT_D_KEY -# define FT_D_KEY 2 +# define FT_D_KEY 2 # endif # ifndef FT_ESC_KEY -# define FT_ESC_KEY 53 +# define FT_ESC_KEY 53 # endif typedef struct s_win |