Changeset 9377 in orxonox.OLD for branches/proxy/src/world_entities/power_ups
- Timestamp:
- Jul 21, 2006, 11:43:38 AM (19 years ago)
- Location:
- branches/proxy/src/world_entities/power_ups
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/world_entities/power_ups/laser_power_up.cc
r9357 r9377 78 78 void LaserPowerUp::collidesWith(WorldEntity* entity, const Vector& location) 79 79 { 80 // PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClass Name(), entity->getClassName(), location.x, location.y, location.z);80 // PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassCName(), entity->getClassCName(), location.x, location.y, location.z); 81 81 if (entity->isA(CL_PLAYABLE)) 82 82 this->toList(OM_DEAD); -
branches/proxy/src/world_entities/power_ups/turret_power_up.cc
r9357 r9377 74 74 void TurretPowerUp::collidesWith(WorldEntity* entity, const Vector& location) 75 75 { 76 // PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClass Name(), entity->getClassName(), location.x, location.y, location.z);76 // PRINTF(3)("collision %s vs %s @ (%f,%f,%f)\n", this->getClassCName(), entity->getClassCName(), location.x, location.y, location.z); 77 77 if (entity->isA(CL_PLAYABLE)) 78 78 this->toList(OM_DEAD);
Note: See TracChangeset
for help on using the changeset viewer.