Changeset f419b09 in network-game
- Timestamp:
- Sep 22, 2013, 9:03:47 PM (11 years ago)
- Branches:
- master
- Children:
- c044a36
- Parents:
- 753fa8a
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
common/MessageContainer.h
r753fa8a rf419b09 31 31 #define MSG_TYPE_PROJECTILE 15 32 32 #define MSG_TYPE_REMOVE_PROJECTILE 16 33 #define MSG_TYPE_CREATE_GAME 17 34 #define MSG_TYPE_JOIN_GAME 18 35 #define MSG_TYPE_LEAVE_GAME 19 33 36 34 37 typedef struct -
server/makefile
r753fa8a rf419b09 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o DataAccess.o Projectile.o 5 DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o DataAccess.o Projectile.o Game.o 6 6 7 7 server : server.cpp $(DEPENDENCIES) … … 26 26 $(CC) -c -o $@ $? 27 27 28 Game.o : $(COMMON_PATH)/Game.cpp 29 $(CC) -c -o $@ $? 30 28 31 %.o : %.cpp 29 32 $(CC) -c -o $@ $?
Note:
See TracChangeset
for help on using the changeset viewer.