diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-13 04:23:57 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-13 04:23:57 +0100 |
commit | 6714c479c5d9bcb025212de44ec92424458261d6 (patch) | |
tree | 73b7ebbaf1f40d36bb6d453826accd90188a5b10 /inc | |
parent | sounds (diff) | |
download | 42-cub3d-6714c479c5d9bcb025212de44ec92424458261d6.tar.gz 42-cub3d-6714c479c5d9bcb025212de44ec92424458261d6.tar.bz2 42-cub3d-6714c479c5d9bcb025212de44ec92424458261d6.tar.xz 42-cub3d-6714c479c5d9bcb025212de44ec92424458261d6.tar.zst 42-cub3d-6714c479c5d9bcb025212de44ec92424458261d6.zip |
Huge bug on death
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d_structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index b28c5ec..543c5a3 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -133,6 +133,7 @@ typedef struct s_player float plane_x; float plane_y; int8_t life; + uint8_t isdead; } t_player; typedef struct s_ray |