Changeset 6412 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Jan 6, 2006, 1:28:36 PM (19 years ago)
- Location:
- branches/network/src/lib/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/network_game_manager.cc
r6341 r6412 237 237 * @param classID: The ID of the class of which an entity should be created 238 238 */ 239 BaseObject* NetworkGameManager::createEntity( TiXmlElement* element)239 BaseObject* NetworkGameManager::createEntity(const TiXmlElement* element) 240 240 { 241 241 if ( this->isServer() ) … … 252 252 if ( !b ) 253 253 { 254 PRINTF(1)("Could not fabricate Object with class ID %x\n", element->Value() );254 PRINTF(1)("Could not fabricate Object with className %s\n", element->Value() ); 255 255 return NULL; 256 256 } -
branches/network/src/lib/network/network_game_manager.h
r6341 r6412 75 75 76 76 void createEntity( ClassID classID, int owner = 0 ); 77 BaseObject* createEntity( TiXmlElement* element);77 BaseObject* createEntity(const TiXmlElement* element); 78 78 void removeEntity( int uniqueID ); 79 79 void sendYouAre( int uniqueID, int userID );
Note: See TracChangeset
for help on using the changeset viewer.