From 9e1f4605408821b74c9e74216fbf995d29a3921c Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 15 Nov 2019 09:34:54 +0100 Subject: .cub file parsing --- parse/parse_north_texture.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'parse/parse_north_texture.c') diff --git a/parse/parse_north_texture.c b/parse/parse_north_texture.c index 0d1af87..eb8cb3c 100644 --- a/parse/parse_north_texture.c +++ b/parse/parse_north_texture.c @@ -1,8 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* parse_north_texture.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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) +t_bool parse_north_texture(t_parsing *parsing, char *line) { parsing->north_texture_path = ft_strdup(line + 1); return (TRUE); } - -- cgit