diff options
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d.h | 2 | ||||
-rw-r--r-- | inc/cub3d_structs.h | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index ba8ee89..f851f5e 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -90,7 +90,9 @@ int8_t ft_get_tex_ea(char **words, t_cub *clist); int8_t ft_get_tex_we(char **words, t_cub *clist); int8_t ft_get_sprite(char **words, t_cub *clist); int8_t ft_get_f_color(char **words, t_cub *clist); +int8_t ft_get_f_tex(char **words, t_cub *clist); int8_t ft_get_c_color(char **words, t_cub *clist); +int8_t ft_get_c_tex(char **words, t_cub *clist); int8_t ft_get_path_nl(char **words, t_cub *clist); int8_t ft_get_tex_nl(char **words, t_cub *clist); int8_t ft_get_music(char **words, t_cub *clist); diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h index 64db18c..44cb003 100644 --- a/inc/cub3d_structs.h +++ b/inc/cub3d_structs.h @@ -159,6 +159,8 @@ typedef struct s_map char *we_tex_path; char *sprite_path; char *nl_tex_path; + char *fl_tex_path; + char *ce_tex_path; char *nlevel_path; char *music_path; char *music_cmd; @@ -175,6 +177,8 @@ typedef struct s_map uint8_t isspawn; uint8_t isnlvl; uint8_t ismusic; + uint8_t isftex; + uint8_t isctex; uint8_t scale; uint32_t nlx; uint32_t nly; |