- Timestamp:
- Mar 11, 2010, 4:30:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup3/src/modules/pickup/PickupSpawner.cc
r6499 r6512 216 216 { 217 217 //TODO: Nicer? Does this even work? 218 this-> respawnTimer_.setTimer(this->respawnTime_, false, createExecutor(createFunctor(&PickupSpawner::respawnTimerCallback, this)));218 this->startRespawnTimer(); 219 219 220 220 this->setActive(false); … … 227 227 this->destroy(); 228 228 } 229 } 230 231 /** 232 @brief 233 Starts the respawn timer. 234 */ 235 void PickupSpawner::startRespawnTimer(void) 236 { 237 this->respawnTimer_.setTimer(this->respawnTime_, false, createExecutor(createFunctor(&PickupSpawner::respawnTimerCallback, this))); 229 238 } 230 239
Note: See TracChangeset
for help on using the changeset viewer.