diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 20:53:04 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2020-02-02 20:53:04 +0100 |
commit | b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c (patch) | |
tree | 693017c84746b288339617c068060142f05c786c /inc | |
parent | Removed useless printfs (diff) | |
download | 42-cub3d-b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c.tar.gz 42-cub3d-b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c.tar.bz2 42-cub3d-b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c.tar.xz 42-cub3d-b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c.tar.zst 42-cub3d-b5db3b2ddc383fe66c4d7d00fd7cd1cfb5a9fe9c.zip |
I can't turn
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 6c9d380..6dcd67b 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -52,9 +52,9 @@ typedef struct s_win typedef struct s_player { - size_t pos_x; - size_t pos_y; - uint8_t view_side; + float pos_x; + float pos_y; + float view_side; } t_player; typedef struct s_cub |