aboutsummaryrefslogtreecommitdiff
path: root/parse/parse_east_texture.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-15 09:34:54 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-15 09:42:45 +0100
commit9e1f4605408821b74c9e74216fbf995d29a3921c (patch)
tree5817402f6ae0329b2015efb1379477f0a61d110a /parse/parse_east_texture.c
parent0433beffa8c5caae0503082b9776e1035c44f94f (diff)
downloadcub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.tar.gz
cub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.tar.bz2
cub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.zip
.cub file parsing
Diffstat (limited to 'parse/parse_east_texture.c')
-rw-r--r--parse/parse_east_texture.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/parse/parse_east_texture.c b/parse/parse_east_texture.c
index e8d356a..846b36d 100644
--- a/parse/parse_east_texture.c
+++ b/parse/parse_east_texture.c
@@ -1,8 +1,19 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* parse_east_texture.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/11/15 09:29:37 by cacharle #+# #+# */
+/* Updated: 2019/11/15 09:31:02 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
#include "cub3d.h"
-t_bool parse_east_texture(t_parsing *parsing, char *line)
+t_bool parse_east_texture(t_parsing *parsing, char *line)
{
parsing->east_texture_path = ft_strdup(line + 1);
return (TRUE);
}
-