Changeset 8493 for code/branches/dockingsystem2/src/orxonox/controllers
- Timestamp:
- May 16, 2011, 6:21:05 PM (14 years ago)
- Location:
- code/branches/dockingsystem2/src/orxonox/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/dockingsystem2/src/orxonox/controllers/ArtificialController.cc
r7801 r8493 381 381 } 382 382 } 383 384 if (distance < 10) 385 { 386 this->positionReached(); 387 } 383 388 } 384 389 … … 386 391 { 387 392 this->moveToPosition(this->targetPosition_); 393 } 394 395 void ArtificialController::positionReached() 396 { 397 // Override me ! 388 398 } 389 399 -
code/branches/dockingsystem2/src/orxonox/controllers/ArtificialController.h
r7163 r8493 97 97 void moveToTargetPosition(); 98 98 99 virtual void positionReached(); 100 99 101 void removeFromFormation(); 100 102 void unregisterSlave();
Note: See TracChangeset
for help on using the changeset viewer.