summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2017-12-12 14:57:52 +0100
committerPaweł Redman <pawel.redman@gmail.com>2017-12-12 14:57:52 +0100
commit1fd33b69f7cef5f9dfe1da417717545f34c673d0 (patch)
treedd30ac53136a54b159018bf4aea6d09d77d376fb /Makefile
parent9f88509c8e440d9bb3430b71708efd69988f461c (diff)
Start moving game logic to src/game.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 74c2486..7ddca74 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \