From 77be863f4f15d2481a64e4e8dadb4060a6e4e590 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 11 Feb 2018 12:34:52 -0500 Subject: Implemented map rendering and basic collision Only wall and platform collision currently works, and map edges are not currently implemented. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 1da4432..f918156 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,9 +61,11 @@ add_executable(Aromatherapy src/entity_manager.cpp src/game.cpp src/animation.cpp + src/world.cpp src/systems/controlling.cpp src/systems/pondering.cpp src/systems/animating.cpp + src/systems/mapping.cpp ) target_link_libraries(Aromatherapy ${ALL_LIBS}) install(TARGETS Aromatherapy RUNTIME DESTINATION ${BIN_DIR}) -- cgit 1.4.1