[sm130futures] doxygen

This commit is contained in:
Jason Felds
2011-04-09 17:09:30 -04:00
parent 817ca278ff
commit 9f86bd47f7
7 changed files with 104 additions and 28 deletions
+7
View File
@@ -12,9 +12,13 @@ struct lua_State;
class PlayerStageStats
{
public:
/** @brief Set up the PlayerStageStats with default values. */
PlayerStageStats() { Init(); }
void Init();
/**
* @brief Add stats from one PlayerStageStats to another.
* @param other the other stats to add to this one. */
void AddStats( const PlayerStageStats& other ); // accumulate
Grade GetGrade() const;
@@ -58,8 +62,11 @@ public:
/** @brief The Player's current miss combo. */
int m_iCurMissCombo;
int m_iCurScoreMultiplier;
/** @brief The player's current score. */
int m_iScore;
/** @brief The theoretically highest score the Player could have at this point. */
int m_iCurMaxScore;
/** @brief The maximum score the Player can get this goaround. */
int m_iMaxScore;
/**