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

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