diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-15 09:34:54 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-15 09:42:45 +0100 |
| commit | 9e1f4605408821b74c9e74216fbf995d29a3921c (patch) | |
| tree | 5817402f6ae0329b2015efb1379477f0a61d110a /parse/parse_west_texture.c | |
| parent | 0433beffa8c5caae0503082b9776e1035c44f94f (diff) | |
| download | cub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.tar.gz cub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.tar.bz2 cub3d-9e1f4605408821b74c9e74216fbf995d29a3921c.zip | |
.cub file parsing
Diffstat (limited to 'parse/parse_west_texture.c')
| -rw-r--r-- | parse/parse_west_texture.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/parse/parse_west_texture.c b/parse/parse_west_texture.c index 5252ab4..dca1629 100644 --- a/parse/parse_west_texture.c +++ b/parse/parse_west_texture.c @@ -1,8 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* parse_west_texture.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/11/15 09:29:42 by cacharle #+# #+# */ +/* Updated: 2019/11/15 09:30:40 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "cub3d.h" -t_bool parse_west_texture(t_parsing *parsing, char *line) +t_bool parse_west_texture(t_parsing *parsing, char *line) { parsing->west_texture_path = ft_strdup(line + 1); return (TRUE); } - |
