Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 5, 2014, 4:06:09 PM (9 years ago)
Author:
fvultier
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pickupsFS14/src/modules/jump/JumpScore.h

    r10074 r10111  
    2121 *
    2222 *   Author:
    23  *      Fabian 'x3n' Landau
     23 *      Fabien Vultier
    2424 *   Co-authors:
    2525 *      ...
    2626 *
    2727 */
    28 
    29 /**
    30     @file JumpScore.h
    31     @brief Declaration of the JumpScore class.
    32     @ingroup Jump
    33 */
    3428
    3529#ifndef _JumpScore_H__
     
    4438namespace orxonox
    4539{
    46 
    47     /**
    48     @brief
    49         The JumpScore class displays the score for a game of @ref orxonox::Jump "Jump".
    50 
    51     @author
    52         Fabian 'x3n' Landau
    53 
    54     @ingroup Jump
    55     */
    5640    class _JumpExport JumpScore : public OverlayText, public Tickable
    5741    {
     
    6044            virtual ~JumpScore();
    6145
    62             virtual void tick(float dt); //!< Creates and sets the caption to be displayed by the JumpScore.
     46            virtual void tick(float dt);
    6347            virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    64             virtual void changedOwner(); //!< Is called when the owner changes.
     48            virtual void changedOwner();
    6549
    6650            void setShowScore(const bool showScore)
     
    8367
    8468        private:
    85             Jump* owner_; //!< The Jump game that owns this JumpScore.
    86             WeakPtr<PlayerInfo> player_; //!< Store information about left player permanently.
     69            Jump* owner_;
     70            WeakPtr<PlayerInfo> player_;
    8771            WorldSound* scoreSound_;
    8872            bool showScore_;
    8973            bool showMessages_;
    9074            std::string gameOverText_;
    91 
    9275    };
    9376}
Note: See TracChangeset for help on using the changeset viewer.