Changeset 11062 for code/branches/cpp11_v3/src/orxonox/worldentities
- Timestamp:
- Jan 13, 2016, 11:13:30 PM (9 years ago)
- Location:
- code/branches/cpp11_v3/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3/src/orxonox/worldentities/TeamSpawnPoint.h
r11054 r11062 49 49 unsigned int getTeamNumber() const 50 50 { return this->teamNumber_; } 51 virtual Pawn* spawn() ;51 virtual Pawn* spawn() override; 52 52 53 53 private: -
code/branches/cpp11_v3/src/orxonox/worldentities/pawns/Pawn.cc
r11059 r11062 86 86 this->aimPosition_ = Vector3::ZERO; 87 87 88 //this->explosionPartList_ = NULL;88 //this->explosionPartList_ = nullptr; 89 89 90 90 if (GameMode::isMaster()) … … 523 523 Munition* Pawn::getMunitionXML() const 524 524 { 525 return NULL;525 return nullptr; 526 526 } 527 527 … … 533 533 } 534 534 535 return NULL;535 return nullptr; 536 536 } 537 537
Note: See TracChangeset
for help on using the changeset viewer.