diff options
Diffstat (limited to '')
-rw-r--r-- | inc/cub3d.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 60bcd58..01dcd76 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -41,6 +41,7 @@ typedef struct s_cub char **map; size_t map_w; size_t line_chk; + uint8_t nsew; struct s_win *wlist; } t_cub; @@ -59,6 +60,7 @@ int ft_get_tex_we(char **words, t_cub *clist); int ft_get_sprite(char **words, t_cub *clist); int ft_get_f_color(char **words, t_cub *clist); int ft_get_c_color(char **words, t_cub *clist); +int ft_get_first_line(char *line, t_cub *clist); int ft_get_map(int fd, t_cub *clist); int ft_check_missing(t_cub *clist); int ft_missing_error(const char *err, t_cub *clist); |