massive header file comment updating (top line only; some didn't have it before)

This commit is contained in:
AJ Kelly
2010-09-10 16:37:04 -05:00
parent 377d559413
commit 8f3791b99a
42 changed files with 86 additions and 55 deletions
+4 -3
View File
@@ -1,3 +1,4 @@
/* BeginnerHelper - A dancing character that follows the steps of the song. */
#ifndef BEGINNER_HELPER_H
#define BEGINNER_HELPER_H
@@ -13,13 +14,13 @@ class BeginnerHelper : public ActorFrame
public:
BeginnerHelper();
~BeginnerHelper();
bool Initialize( int iDancePadType );
bool IsInitialized() { return m_bInitialized; }
static bool CanUse();
void AddPlayer( PlayerNumber pn, const NoteData &nd );
void ShowStepCircle( PlayerNumber pn, int CSTEP );
bool m_bShowBackground;
bool m_bShowBackground;
void Update( float fDeltaTime );
virtual void DrawPrimitives();
@@ -37,7 +38,7 @@ protected:
int m_iLastRowChecked;
int m_iLastRowFlashed;
bool m_bInitialized;
bool m_bInitialized;
};
#endif