Changeset 7072 in orxonox.OLD for trunk/src/world_entities/space_ships
- Timestamp:
- Feb 7, 2006, 3:06:34 PM (19 years ago)
- Location:
- trunk/src/world_entities/space_ships
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/hover.cc
r7014 r7072 226 226 */ 227 227 void Hover::collidesWith(WorldEntity* entity, const Vector& location) 228 {} 228 { 229 Playable::collidesWith(entity, location); 230 } 229 231 230 232 -
trunk/src/world_entities/space_ships/hover.h
r6999 r7072 67 67 float airViscosity; 68 68 69 WorldEntity* hitEntity; 69 70 }; 70 71 -
trunk/src/world_entities/space_ships/turbine_hover.cc
r7067 r7072 116 116 this->acceleration = 10.0f; 117 117 this->airFriction = 2.0f; 118 119 this->setHealthMax(100); 120 this->setHealth(100); 121 118 122 119 123 // camera - issue … … 256 260 */ 257 261 void TurbineHover::collidesWith(WorldEntity* entity, const Vector& location) 258 {} 262 { 263 Playable::collidesWith(entity, location); 264 } 259 265 260 266
Note: See TracChangeset
for help on using the changeset viewer.