Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 3, 2006, 1:56:25 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: added turbine Hover

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/space_ships/turbine_hover.h

    r6999 r7000  
    11
    22/*!
    3  * @file hover.h
    4  * Implements the Control of a Hover
     3 * @file turbine_hover.h
     4 * Implements the Control of a TurbineHover
    55 */
    66
    7 #ifndef _HOVER_H
    8 #define _HOVER_H
     7#ifndef _TURBINE_HOVER_H
     8#define _TURBINE_HOVER_H
    99
    1010#include "playable.h"
    1111
    12 class Hover : public Playable
     12class TurbineHover : public Playable
    1313{
    1414  public:
    1515
    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();
    1919
    2020    virtual void loadParams(const TiXmlElement* root);
     
    5656    float                 rotation;
    5757
    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.
    6060    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.
    6262    float                 airFriction;        //!< AirFriction.
    6363
     
    6969};
    7070
    71 #endif /* _HOVERS_H */
     71#endif /* _TURBINE_HOVERS_H */
Note: See TracChangeset for help on using the changeset viewer.