Changeset 6540 for code/trunk/src/modules/pickup/items
- Timestamp:
- Mar 16, 2010, 9:35:11 PM (15 years ago)
- Location:
- code/trunk/src/modules/pickup/items
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/pickup/items/HealthPickup.cc
r6524 r6540 26 26 * 27 27 */ 28 29 /** 30 @file HealthPickup.cc 31 @brief Implementation of the HealthPickup class. 32 */ 28 33 29 34 #include "HealthPickup.h" … … 94 99 this->pickupIdentifier_->addParameter(type1, val1); 95 100 96 //TODO: Does this work, is val valid outside the function scope?97 101 std::string val2 = this->getHealthType(); 98 102 std::string type2 = "healthType"; … … 133 137 void HealthPickup::tick(float dt) 134 138 { 139 SUPER(HealthPickup, tick, dt); 140 135 141 if(this->isContinuous() && this->isUsed()) 136 142 { -
code/trunk/src/modules/pickup/items/HealthPickup.h
r6524 r6540 26 26 * 27 27 */ 28 29 /** 30 @file HealthPickup.h 31 @brief Declaration of the HealthPickup class. 32 */ 28 33 29 34 #ifndef _HealthPickup_H__
Note: See TracChangeset
for help on using the changeset viewer.