diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-13 17:29:19 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-13 17:29:19 +0100 |
| commit | b71e91e052a2884626c297cb014cbe2b63131c80 (patch) | |
| tree | 1a3c081fa637662553f292b6305390229bc2591e /parse/parse_north_texture.c | |
| parent | 2007f61ef09c0b538aca2a7f20428f81175f322f (diff) | |
| download | cub3d-b71e91e052a2884626c297cb014cbe2b63131c80.tar.gz cub3d-b71e91e052a2884626c297cb014cbe2b63131c80.tar.bz2 cub3d-b71e91e052a2884626c297cb014cbe2b63131c80.zip | |
Basic parsing structure, Added subject
Diffstat (limited to 'parse/parse_north_texture.c')
| -rw-r--r-- | parse/parse_north_texture.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/parse/parse_north_texture.c b/parse/parse_north_texture.c new file mode 100644 index 0000000..0d1af87 --- /dev/null +++ b/parse/parse_north_texture.c @@ -0,0 +1,8 @@ +#include "cub3d.h" + +t_bool parse_north_texture(t_parsing *parsing, char *line) +{ + parsing->north_texture_path = ft_strdup(line + 1); + return (TRUE); +} + |
