blob: b588df71150568a58390e6d08097423a2bb4f7af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <libft.h>
#include <cub3d.h>
int
ft_get_sprite(char **words, t_cub *clist)
{
if (!(*words) || !words[1] || words[2])
return (-1);
ft_memdel((void**)&clist->sprite_path);
if (!(clist->sprite_path = ft_strdup(*(words + 1))))
return (-1);
return (0);
}
|