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

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