Changeset 9b5d30b in network-game for common/MessageProcessor.h
- Timestamp:
- Jul 14, 2013, 9:22:38 PM (11 years ago)
- Branches:
- master
- Children:
- 10f6fc2
- Parents:
- 5a64bea
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/MessageProcessor.h
r5a64bea r9b5d30b 59 59 60 60 MessageContainer(const MessageContainer& mc) { 61 this-> id = mc.id;61 this->msg = mc.msg; 62 62 this->clientAddr = mc.clientAddr; 63 this->msg = mc.msg;64 this->ackReceived = mc.ackReceived;65 63 } 66 64 … … 73 71 } 74 72 75 int id;73 NETWORK_MSG msg; 76 74 struct sockaddr_in clientAddr; 77 NETWORK_MSG msg;78 bool ackReceived;79 75 }; 80 76
Note:
See TracChangeset
for help on using the changeset viewer.