aboutsummaryrefslogtreecommitdiffstats
path: root/inc/cub3d_structs.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-15 15:09:59 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-15 15:09:59 +0100
commit163bed0c8988ff020b746bf96dc01dd2058dc4f9 (patch)
tree724090f6319cc6d0336eb2a5b501bd032599d295 /inc/cub3d_structs.h
parentok (diff)
download42-cub3d-163bed0c8988ff020b746bf96dc01dd2058dc4f9.tar.gz
42-cub3d-163bed0c8988ff020b746bf96dc01dd2058dc4f9.tar.bz2
42-cub3d-163bed0c8988ff020b746bf96dc01dd2058dc4f9.tar.xz
42-cub3d-163bed0c8988ff020b746bf96dc01dd2058dc4f9.tar.zst
42-cub3d-163bed0c8988ff020b746bf96dc01dd2058dc4f9.zip
Footsteps are bav
Diffstat (limited to '')
-rw-r--r--inc/cub3d_structs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h
index 473fe9f..2d1d00d 100644
--- a/inc/cub3d_structs.h
+++ b/inc/cub3d_structs.h
@@ -58,15 +58,19 @@ typedef struct s_bmp_info
typedef struct s_sfx
{
char *death;
+ char *footstep_one;
+ char *footstep_two;
char *new_lvl;
char *pain_one;
char *pain_two;
char *trap;
pthread_t death_tid;
+ pthread_t footstep_tid;
pthread_t new_lvl_tid;
pthread_t pain_tid;
pthread_t trap_tid;
pthread_mutex_t death_mutex;
+ pthread_mutex_t footstep_mutex;
pthread_mutex_t new_lvl_mutex;
pthread_mutex_t pain_mutex;
pthread_mutex_t trap_mutex;