Moving game.cpp and game.h to engine folder, because they are part of the engine.

This commit is contained in:
lotodore
2011-07-02 15:00:47 +00:00
parent 0e85294519
commit 070319da52
3 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ DEPENDPATH += . \
# Input # Input
HEADERS += \ HEADERS += \
src/game.h \ src/engine/game.h \
src/session.h \ src/session.h \
src/playerdata.h \ src/playerdata.h \
src/gamedata.h \ src/gamedata.h \
@@ -133,7 +133,7 @@ HEADERS += \
src/net/servermanagerfactory.h src/net/servermanagerfactory.h
SOURCES += \ SOURCES += \
src/game.cpp \ src/engine/game.cpp \
src/session.cpp \ src/session.cpp \
src/playerdata.cpp \ src/playerdata.cpp \
src/config/configfile.cpp \ src/config/configfile.cpp \
View File