Changeset 11065 for code/branches/cpp11_v3/src/orxonox/worldentities
- Timestamp:
- Jan 17, 2016, 1:59:00 PM (9 years ago)
- Location:
- code/branches/cpp11_v3/src/orxonox/worldentities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3/src/orxonox/worldentities/Actionpoint.h
r11052 r11065 92 92 public: 93 93 Actionpoint(Context* context); 94 virtual ~Actionpoint() {}94 virtual ~Actionpoint() = default; 95 95 96 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) ;96 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; 97 97 98 98 /** @brief Decides what AI will do. @param val action to execute */ -
code/branches/cpp11_v3/src/orxonox/worldentities/ExplosionPart.cc
r11052 r11065 47 47 this->effect2_ = ""; 48 48 this->model_= new Model(this->getContext()); 49 this->effect1Particle_= NULL;50 this->effect2Particle_= NULL;49 this->effect1Particle_= nullptr; 50 this->effect2Particle_= nullptr; 51 51 this->explosionEntity_ = new MovableEntity(this->getContext()); 52 52 this->posOffset_ = Vector3::ZERO; -
code/branches/cpp11_v3/src/orxonox/worldentities/ExplosionPart.h
r11052 r11065 51 51 ExplosionPart(Context* context); 52 52 ~ExplosionPart(); 53 void XMLPort(Element& xmlelement, XMLPort::Mode mode); 53 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode) override; 54 54 55 void Explode(); 55 56 void stop();
Note: See TracChangeset
for help on using the changeset viewer.