various cleanup/comment changes
This commit is contained in:
@@ -94,7 +94,6 @@ void BPMDisplay::Update( float fDeltaTime )
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void BPMDisplay::SetBPMRange( const DisplayBpms &bpms )
|
||||
{
|
||||
ASSERT( !bpms.vfBpms.empty() );
|
||||
|
||||
+1
-3
@@ -1,5 +1,3 @@
|
||||
/** @brief BPMDisplay - displays a BPM or a range of BPMs. */
|
||||
|
||||
#ifndef BPM_DISPLAY_H
|
||||
#define BPM_DISPLAY_H
|
||||
|
||||
@@ -11,7 +9,7 @@ class Song;
|
||||
class Course;
|
||||
struct DisplayBpms;
|
||||
|
||||
/** @brief Display the BPM/range of them as requested. */
|
||||
/** @brief Displays a BPM or a range of BPMs. */
|
||||
class BPMDisplay : public BitmapText
|
||||
{
|
||||
public:
|
||||
|
||||
+2
-4
@@ -1,5 +1,3 @@
|
||||
/* Character - An persona that defines attacks for use in battle. */
|
||||
|
||||
#ifndef Character_H
|
||||
#define Character_H
|
||||
|
||||
@@ -9,14 +7,14 @@
|
||||
struct lua_State;
|
||||
typedef lua_State Lua;
|
||||
|
||||
|
||||
/** @brief A persona that defines attacks for use in battle. */
|
||||
class Character
|
||||
{
|
||||
public:
|
||||
Character();
|
||||
~Character() { }
|
||||
|
||||
bool Load( RString sCharDir ); // return true if success
|
||||
bool Load( RString sCharDir ); // return true if successful
|
||||
|
||||
RString GetTakingABreakPath() const;
|
||||
RString GetCardPath() const { return m_sCardPath; }
|
||||
|
||||
@@ -174,7 +174,6 @@ void ScreenOptionsExportPackage::ExportOptions( int iRow, const vector<PlayerNum
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* (c) 2002-2004 Chris Danford
|
||||
* All rights reserved.
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
class Course;
|
||||
|
||||
/** @brief A menu for exporting packages. */
|
||||
class ScreenOptionsExportPackage : public ScreenOptions
|
||||
{
|
||||
public:
|
||||
|
||||
@@ -133,6 +133,7 @@ private:
|
||||
RageTimer m_timerToggleCursor;
|
||||
};
|
||||
|
||||
/** @brief Displays a text entry box and keyboard over the top of another screen. */
|
||||
class ScreenTextEntryVisual: public ScreenTextEntry
|
||||
{
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user