Changeset 8106 for code/branches/tetris/src/modules/pong/PongBat.h
- Timestamp:
- Mar 23, 2011, 6:22:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tetris/src/modules/pong/PongBat.h
r8105 r8106 45 45 /** 46 46 @brief 47 The PongBat class manages the bats for @ref orxonox::Pong "Pong", which are the elements controlled by the player .48 47 The PongBat class manages the bats for @ref orxonox::Pong "Pong", which are the elements controlled by the players. 48 49 49 It is responsible for the movement (controlled by the players) of the bat. 50 50 51 51 @author 52 52 Fabian 'x3n' Landau 53 53 54 54 @ingroup Pong 55 55 */ … … 110 110 111 111 float movement_; //!< The amount (and direction), in z-direction, of movement of the bat. 112 bool bMoveLocal_; // TODO ???113 float speed_; //!< The movement speed of the bat.112 bool bMoveLocal_; //!< Helper to know whether the movement is caused by moveFrontBack() or moveRightLeft(). 113 float speed_; //!< The movement speed of the bat. 114 114 float length_; //!< The length of the bat (in z-direction) as percentage of the height of the playing field. 115 115 float fieldHeight_; //!< The height of the playing field. 116 bool bSteadiedPosition_; // TODO: ???116 bool bSteadiedPosition_; //!< Helper boolean, to keep track of when to steady the position, to ensure network synchronicity. 117 117 }; 118 118 }
Note: See TracChangeset
for help on using the changeset viewer.