Changeset 6695 in orxonox.OLD for trunk/src/world_entities/power_ups
- Timestamp:
- Jan 25, 2006, 2:39:53 PM (19 years ago)
- Location:
- trunk/src/world_entities/power_ups
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/power_ups/param_power_up.cc
r6547 r6695 46 46 { 47 47 this->init(); 48 this->loadParams(root); 48 if( root != NULL) 49 this->loadParams(root); 49 50 } 50 51 -
trunk/src/world_entities/power_ups/turret_power_up.cc
r6512 r6695 36 36 this->init(); 37 37 38 this->loadParams(root); 38 if( root != NULL) 39 this->loadParams(root); 39 40 } 40 41 -
trunk/src/world_entities/power_ups/weapon_power_up.cc
r6589 r6695 39 39 { 40 40 this->init(); 41 this->loadParams(root); 41 if( root != NULL) 42 this->loadParams(root); 42 43 } 43 44
Note: See TracChangeset
for help on using the changeset viewer.