aboutsummaryrefslogtreecommitdiff
path: root/parse/parse_sprite_texture.c
blob: 039a827faf813e879eb10b550fd667220d8f90d7 (plain)
1
2
3
4
5
6
7
8
#include "cub3d.h"

t_bool parse_sprite_texture(t_parsing *parsing, char *line)
{
	parsing->sprite_texture_path = ft_strdup(line + 1);
	return (TRUE);
}