Connected parsing to rest of the game

This commit is contained in:
Philippe BLAGOJEVIC
2022-04-23 20:12:13 +02:00
parent fac1f78230
commit f53e66556b
19 changed files with 1010 additions and 23 deletions

View File

@@ -13,6 +13,8 @@ OS = $(shell uname)
# sources
D_SRCS = srcs \
srcs/init \
srcs/gnl \
srcs/parsing \
srcs/hook \
srcs/draw \
srcs/player \
@@ -23,8 +25,16 @@ SRCS = cube3d.c
SRCS += memorybook.c \
memorybook_utils.c
# init/
SRCS += init_struct.c \
init_parsing.c
SRCS += init_struct.c
# gnl/
SRCS += get_next_line.c \
get_next_line_utils.c
# parsing/
SRCS += init_parsing.c \
check_extension.c \
check_path.c \
check_rgb.c \
check_map.c
# hook/
SRCS += keyhook.c \
key_action_1.c \