- Timestamp:
- May 3, 2015, 12:22:22 PM (10 years ago)
- Location:
- code/branches/core7/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/orxonox/PawnManager.cc
r10413 r10416 51 51 } 52 52 53 void PawnManager::p reUpdate(const Clock& time)53 void PawnManager::postUpdate(const Clock& time) 54 54 { 55 55 for (ObjectList<Pawn>::iterator it = ObjectList<Pawn>::begin(); it != ObjectList<Pawn>::end(); ) -
code/branches/core7/src/orxonox/PawnManager.h
r10413 r10416 44 44 virtual ~PawnManager(); 45 45 46 virtual void preUpdate(const Clock& time) ;47 virtual void postUpdate(const Clock& time) { /*no action*/ }46 virtual void preUpdate(const Clock& time) { /*no action*/ } 47 virtual void postUpdate(const Clock& time); 48 48 49 49 private: -
code/branches/core7/src/orxonox/ShipPartManager.cc
r10414 r10416 51 51 } 52 52 53 void ShipPartManager::p reUpdate(const Clock& time)53 void ShipPartManager::postUpdate(const Clock& time) 54 54 { 55 55 for (ObjectList<ShipPart>::iterator it = ObjectList<ShipPart>::begin(); it != ObjectList<ShipPart>::end(); ) -
code/branches/core7/src/orxonox/ShipPartManager.h
r10413 r10416 44 44 virtual ~ShipPartManager(); 45 45 46 virtual void preUpdate(const Clock& time) ;47 virtual void postUpdate(const Clock& time) { /*no action*/ }46 virtual void preUpdate(const Clock& time) { /*no action*/ } 47 virtual void postUpdate(const Clock& time); 48 48 49 49 private:
Note: See TracChangeset
for help on using the changeset viewer.