Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 3, 2006, 3:16:31 PM (18 years ago)
Author:
bensch
Message:

added cruizer

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/single_player_map/src/world_entities/space_ships/cruizer.h

    r9036 r9039  
    11
    22/*!
    3  * @file turbine_hover.h
    4  * Implements the Control of a TurbineHover
     3 * @file cruizer.h
     4 * Implements the Control of a Cruizer
    55 */
    66
    7 #ifndef _TURBINE_HOVER_H
    8 #define _TURBINE_HOVER_H
     7#ifndef _CRUIZER_H
     8#define _CRUIZER_H
    99
    1010#include "playable.h"
     
    1414class ParticleSystem;
    1515
    16 class TurbineHover : public Playable
     16class Cruizer : public Playable
    1717{
    1818  public:
    19     TurbineHover(const std::string& fileName);
    20     TurbineHover(const TiXmlElement* root = NULL);
    21     virtual ~TurbineHover();
     19    Cruizer(const std::string& fileName);
     20    Cruizer(const TiXmlElement* root = NULL);
     21    virtual ~Cruizer();
    2222
    2323    virtual void loadParams(const TiXmlElement* root);
     
    5959    float                 rotation;
    6060
    61    // Vector                velocity;           //!< the velocity of the TurbineHover.
    62     Quaternion            direction;          //!< the direction of the TurbineHover.
     61   // Vector                velocity;           //!< the velocity of the Cruizer.
     62    Quaternion            direction;          //!< the direction of the Cruizer.
    6363    float                 travelSpeed;        //!< the current speed of the Hove (to make soft movement)
    64     float                 acceleration;       //!< the acceleration of the TurbineHover.
     64    float                 acceleration;       //!< the acceleration of the Cruizer.
    6565    float                 airFriction;        //!< AirFriction.
    6666
     
    7474};
    7575
    76 #endif /* _TURBINE_HOVERS_H */
     76#endif /* _CRUIZERS_H */
Note: See TracChangeset for help on using the changeset viewer.