Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 23, 2011, 6:22:47 PM (14 years ago)
Author:
dafrick
Message:

And even more documentation.
Also moved some of the documentation out of Groups.dox into seperate files located in the new groups folder.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/tetris/src/modules/pong/PongBat.h

    r8105 r8106  
    4545    /**
    4646    @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
    4949        It is responsible for the movement (controlled by the players) of the bat.
    50        
     50
    5151    @author
    5252        Fabian 'x3n' Landau
    53        
     53
    5454    @ingroup Pong
    5555    */
     
    110110
    111111            float movement_; //!< The amount (and direction), in z-direction, of movement of the bat.
    112             bool bMoveLocal_; //TODO ???
    113             float speed_; //!< The movementspeed 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.
    114114            float length_; //!< The length of the bat (in z-direction) as percentage of the height of the playing field.
    115115            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.
    117117    };
    118118}
Note: See TracChangeset for help on using the changeset viewer.