diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-12-12 14:57:52 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-12-12 14:57:52 +0100 |
commit | 1fd33b69f7cef5f9dfe1da417717545f34c673d0 (patch) | |
tree | dd30ac53136a54b159018bf4aea6d09d77d376fb /Makefile | |
parent | 9f88509c8e440d9bb3430b71708efd69988f461c (diff) |
Start moving game logic to src/game.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,9 +9,9 @@ PP_CC := $(PP_BOLD)$(shell tput setf 6)CC$(PP_RESET) PP_LD := $(PP_BOLD)$(shell tput setf 2)LD$(PP_RESET) PP_RM := $(PP_BOLD)$(shell tput setf 4)RM$(PP_RESET) -SRC := src/assets.cpp \ - src/game.cpp \ - src/interface.cpp \ +SRC := src/game/assets.cpp \ + src/game/game.cpp \ + src/game/interface.cpp \ src/main.cpp \ src/path_finder.cpp \ src/procgen.cpp \ |