- Timestamp:
- Jan 24, 2006, 4:39:51 PM (19 years ago)
- Location:
- branches/network/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/synchronizeable.cc
r6672 r6675 19 19 #include "synchronizeable.h" 20 20 21 #include "network_manager.h" 22 #include "network_stream.h" 21 23 #include "netdefs.h" 22 #include "network_manager.h"23 #include "network_game_manager.h"24 #include "network_stream.h"25 24 26 25 #include "assert.h" -
branches/network/src/world_entities/movie_entity.cc
r6600 r6675 43 43 this->toList(OM_COMMON); 44 44 45 this->loadParams(root); 45 if( root != NULL) 46 this->loadParams(root); 46 47 47 48 counter = 0; -
branches/network/src/world_entities/power_ups/param_power_up.cc
r6547 r6675 46 46 { 47 47 this->init(); 48 this->loadParams(root); 48 if( root != NULL) 49 this->loadParams(root); 49 50 } 50 51 -
branches/network/src/world_entities/power_ups/turret_power_up.cc
r6512 r6675 36 36 this->init(); 37 37 38 this->loadParams(root); 38 if( root != NULL) 39 this->loadParams(root); 39 40 } 40 41 -
branches/network/src/world_entities/power_ups/weapon_power_up.cc
r6589 r6675 39 39 { 40 40 this->init(); 41 this->loadParams(root); 41 if( root != NULL) 42 this->loadParams(root); 42 43 } 43 44 -
branches/network/src/world_entities/skybox.cc
r6634 r6675 51 51 this->preInit(); 52 52 53 this->loadParams(root); 53 if( root != NULL) 54 this->loadParams(root); 54 55 55 56 this->postInit(); -
branches/network/src/world_entities/terrain.cc
r6512 r6675 39 39 { 40 40 this->init(); 41 this->loadParams(root); 41 if( root != NULL) 42 this->loadParams(root); 42 43 43 44 // if (this->model != NULL) -
branches/network/src/world_entities/weapons/targeting_turret.cc
r6512 r6675 48 48 { 49 49 this->init(); 50 this->loadParams(root); 50 if( root != NULL) 51 this->loadParams(root); 51 52 } 52 53
Note: See TracChangeset
for help on using the changeset viewer.