diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/cub3d.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h index 3a18cd8..e0b2f79 100644 --- a/inc/cub3d.h +++ b/inc/cub3d.h @@ -50,10 +50,13 @@ int ft_key_event(int keycode, void *param); int ft_exit(uint8_t exit_code, t_cub *clist); void ft_drawsquare(int a, int b, int rgb, t_cub *clist); void ft_parse_map(const char *map_path, t_cub *clist); -int ft_select_get(char **words, t_cub *clist); +uint8_t ft_select_get(char **words, t_cub *clist); int ft_get_res(char **words, t_cub *clist); -int ft_get_tex(int fd, t_cub *clist); -int ft_get_sprite_tex(int fd, t_cub *clist); +int ft_get_tex_no(char **words, t_cub *clist); +int ft_get_tex_so(char **words, t_cub *clist); +int ft_get_tex_ea(char **words, t_cub *clist); +int ft_get_tex_we(char **words, t_cub *clist); +int ft_get_sprite(char **words, t_cub *clist); int ft_get_colors(int fd, t_cub *clist); int ft_get_map(int fd, t_cub *clist); void ft_check_empty_line(int fd, |