Changeset dee75cc in network-game
- Timestamp:
- Jul 22, 2013, 11:56:12 PM (11 years ago)
- Branches:
- master
- Children:
- eab83af
- Parents:
- 49da01a
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/main.cpp
r49da01a rdee75cc 28 28 29 29 #include "../../common/Common.h" 30 #include "../../common/Message.h"31 30 #include "../../common/MessageProcessor.h" 32 31 #include "../../common/WorldMap.h" -
common/MessageProcessor.h
r49da01a rdee75cc 5 5 6 6 #include "Compiler.h" 7 8 #include "Message.h"9 7 10 8 #if defined WINDOWS -
server/makefile
r49da01a rdee75cc 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o Message .o MessageProcessor.o Player.o WorldMap.o DataAccess.o Projectile.o5 DEPENDENCIES = Common.o MessageProcessor.o Player.o WorldMap.o DataAccess.o Projectile.o 6 6 7 7 server : server.cpp $(DEPENDENCIES) … … 9 9 10 10 Common.o : $(COMMON_PATH)/Common.cpp 11 $(CC) -c -o $@ $?12 13 Message.o : $(COMMON_PATH)/Message.cpp14 11 $(CC) -c -o $@ $? 15 12 -
server/server.cpp
r49da01a rdee75cc 28 28 #include "../common/Compiler.h" 29 29 #include "../common/Common.h" 30 #include "../common/Message.h"31 30 #include "../common/MessageProcessor.h" 32 31 #include "../common/WorldMap.h"
Note:
See TracChangeset
for help on using the changeset viewer.