Changeset 7000 in orxonox.OLD for trunk/src/world_entities/space_ships/turbine_hover.h
- Timestamp:
- Feb 3, 2006, 1:56:25 AM (19 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/space_ships/turbine_hover.h
r6999 r7000 1 1 2 2 /*! 3 * @file hover.h4 * Implements the Control of a Hover3 * @file turbine_hover.h 4 * Implements the Control of a TurbineHover 5 5 */ 6 6 7 #ifndef _ HOVER_H8 #define _ HOVER_H7 #ifndef _TURBINE_HOVER_H 8 #define _TURBINE_HOVER_H 9 9 10 10 #include "playable.h" 11 11 12 class Hover : public Playable12 class TurbineHover : public Playable 13 13 { 14 14 public: 15 15 16 Hover(const char* fileName);17 Hover(const TiXmlElement* root = NULL);18 virtual ~ Hover();16 TurbineHover(const char* fileName); 17 TurbineHover(const TiXmlElement* root = NULL); 18 virtual ~TurbineHover(); 19 19 20 20 virtual void loadParams(const TiXmlElement* root); … … 56 56 float rotation; 57 57 58 Vector velocity; //!< the velocity of the Hover.59 Quaternion direction; //!< the direction of the Hover.58 Vector velocity; //!< the velocity of the TurbineHover. 59 Quaternion direction; //!< the direction of the TurbineHover. 60 60 float travelSpeed; //!< the current speed of the Hove (to make soft movement) 61 float acceleration; //!< the acceleration of the Hover.61 float acceleration; //!< the acceleration of the TurbineHover. 62 62 float airFriction; //!< AirFriction. 63 63 … … 69 69 }; 70 70 71 #endif /* _ HOVERS_H */71 #endif /* _TURBINE_HOVERS_H */
Note: See TracChangeset
for help on using the changeset viewer.