Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3450 in orxonox.OLD for orxonox/trunk/src/player.h


Ignore:
Timestamp:
Mar 2, 2005, 4:10:19 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen-tags: player.cc/h p_node.cc/h base_entity.h skysphere.cc/h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/player.h

    r3396 r3450  
    3333 
    3434 private:
    35   bool bUp, bDown, bLeft, bRight, bAscend, bDescend;
    36   bool bFire;
    37   Vector velocity;
    38   float travelSpeed;
    39   float acceleration;
    40   GLuint objectList;
     35  bool bUp;              //!< up button pressed.
     36  bool bDown;            //!< down button pressed.
     37  bool bLeft;            //!< left button pressed.
     38  bool bRight;           //!< right button pressed.
     39  bool bAscend;          //!< ascend button pressed.
     40  bool bDescend;         //!< descend button presses.
     41  bool bFire;            //!< fire button pressed.
     42
     43  Vector velocity;       //!< the velocity of the player.
     44  float travelSpeed;     //!< the current speed of the player (to make soft movement)
     45  float acceleration;    //!< the acceleration of the player.
    4146 
    4247  void move(float time);
Note: See TracChangeset for help on using the changeset viewer.