Changeset 4941 in orxonox.OLD for orxonox/trunk/src/world_entities/weapons
- Timestamp:
- Jul 23, 2005, 1:08:39 AM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities/weapons
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/weapons/projectile.cc
r4932 r4941 24 24 #include "model.h" 25 25 #include "vector.h" 26 27 #include "garbage_collector.h" 26 28 27 29 using namespace std; … … 93 95 PRINTF(5)("current life cycle is: %f\n", this->lifeCycle); 94 96 PRINTF(5)("FINALIZE===========================\n"); 95 this->finalize(); 97 //this->finalize(); 98 GarbageCollector::getInstance()->collect(this); 96 99 } 97 100 } -
orxonox/trunk/src/world_entities/weapons/test_bullet.cc
r4933 r4941 21 21 #include "model.h" 22 22 #include "vector.h" 23 #include " object_manager.h"23 #include "garbage_collector.h" 24 24 25 25 using namespace std; … … 68 68 PRINTF(5)("current life cycle is: %f\n", this->lifeCycle); 69 69 PRINTF(5)("FINALIZE===========================\n"); 70 this->finalize(); 70 // this->finalize(); 71 GarbageCollector::getInstance()->collect(this); 72 71 73 } 72 74 }
Note: See TracChangeset
for help on using the changeset viewer.