diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-06 21:47:09 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-06 21:47:09 +0100 |
commit | 3048aae5d3f50359f19e0d440376ae422a16a7b7 (patch) | |
tree | 056ef0bcf64a304759e2fe29bf3a0ccdacd3786f /inc | |
parent | boy (diff) | |
download | 42-cub3d-3048aae5d3f50359f19e0d440376ae422a16a7b7.tar.gz 42-cub3d-3048aae5d3f50359f19e0d440376ae422a16a7b7.tar.bz2 42-cub3d-3048aae5d3f50359f19e0d440376ae422a16a7b7.tar.xz 42-cub3d-3048aae5d3f50359f19e0d440376ae422a16a7b7.tar.zst 42-cub3d-3048aae5d3f50359f19e0d440376ae422a16a7b7.zip |
Good enough
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d.h | 1 | ||||
-rw-r--r-- | inc/cub3d_structs.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index b552b38..6078801 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -120,6 +120,7 @@ uint8_t ft_use_args(int argc, const char *argv[], */ void ft_set_minimap_scale(t_cub *clist); +void ft_enable_music(t_cub *cl); void ft_music_fork(char **mcmd_words, char *const envp[]); void ft_detect(t_cub *cl); void ft_castray(t_cub *cl); diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index d253b7b..d53cdb9 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -176,6 +176,7 @@ typedef struct s_cub uint8_t isoldmus; uint16_t currlvl; uint16_t i; + char *const *envp; char errmsg[64]; int32_t key_input[5]; pid_t mpid; |