aboutsummaryrefslogtreecommitdiff
path: root/parse/parse_north_texture.c
blob: eb8cb3c479c86c4f745456adb1289c3d3edc2889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   parse_north_texture.c                              :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: cacharle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2019/11/15 09:29:47 by cacharle          #+#    #+#             */
/*   Updated: 2019/11/15 09:30:52 by cacharle         ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "cub3d.h"

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