Changeset 1752 for code/trunk/src/network/packet
- Timestamp:
- Sep 9, 2008, 8:28:24 PM (16 years ago)
- Location:
- code/trunk/src/network/packet
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/network/packet/Gamestate.cc
r1751 r1752 30 30 #include "network/ClientInformation.h" 31 31 #include "network/GamestateHandler.h" 32 #include "core/CoreIncludes.h" 32 33 #include "core/Iterator.h" 33 34 … … 267 268 assert(HEADER->crc32==calcCRC(ndata+sizeof(GamestateHeader), HEADER->normsize)); 268 269 #endif 269 270 270 271 //copy over the header 271 272 *GAMESTATE_HEADER(ndata) = *HEADER; … … 386 387 return HEADER->compressed; 387 388 } 388 389 389 390 int Gamestate::getBaseID(){ 390 391 return HEADER->base_id; -
code/trunk/src/network/packet/Gamestate.h
r1751 r1752 32 32 #include "util/CRC32.h" 33 33 #endif 34 #include "core/CoreIncludes.h"35 34 36 35 #ifndef NETWORK_PACKETGAMESTATE_H … … 83 82 private: 84 83 unsigned int calcGamestateSize(unsigned int id, int mode=0x0); 85 void removeObject(orxonox::ObjectList <Synchronisable>::iterator&it);84 void removeObject(orxonox::ObjectListIterator<Synchronisable> &it); 86 85 87 86
Note: See TracChangeset
for help on using the changeset viewer.