Added game map drawing.

This commit is contained in:
Tim Schubert 2016-01-11 23:56:50 +01:00
commit 692e9de011
16 changed files with 860 additions and 0 deletions

3
src/CMakeLists.txt Normal file
View file

@ -0,0 +1,3 @@
add_executable(Bob Main.cpp)
add_library(GameMap GameMap.cpp)
target_link_libraries(Bob GameMap ${SDL2_LIBRARY} ${SDL2GFX_LIBRARY} ${Boost_LIBRARIES})