Changeset 6725 for code/trunk/src/orxonox/interfaces
- Timestamp:
- Apr 13, 2010, 10:39:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/interfaces/Pickupable.cc
r6540 r6725 46 46 Constructor. Registers the objects and initializes its member variables. 47 47 */ 48 Pickupable::Pickupable() : used_(false), pickedUp_(false)48 Pickupable::Pickupable() : pickupIdentifier_(NULL), used_(false), pickedUp_(false) 49 49 { 50 50 RegisterRootObject(Pickupable); … … 69 69 this->setCarrier(NULL); 70 70 } 71 72 if(this->pickupIdentifier_ != NULL) 73 this->pickupIdentifier_->destroy(); 71 74 } 72 75
Note: See TracChangeset
for help on using the changeset viewer.