Adding destroyers and scene utility

This commit is contained in:
Tristan Roux
2019-12-02 17:17:40 +01:00
parent 05ec719e00
commit 7964f4ead3
17 changed files with 134 additions and 47 deletions
+9 -1
View File
@@ -9,8 +9,16 @@ SRC = src/engine/engine.c \
src/engine/engine_internal.c \
src/engine/event_handler.c \
src/renderer/renderer.c \
src/renderer/texture_utility.c \
src/entity/entity.c \
src/entity/entity_factory.c \
src/component.c \
src/components/movable_component.c
src/components/movable_component.c \
src/components/position_component.c \
src/scene/scene.c \
src/utility/my_strdup.c \
src/utility/my_strlen.c \
src/utility/arraylen.c
OBJ = $(SRC:%.c=%.o)