whitespace cleanup

This commit is contained in:
AJ Kelly
2011-02-25 04:13:37 -06:00
parent c2dbfabb0c
commit 63352110ea
2 changed files with 3 additions and 7 deletions
+1 -2
View File
@@ -23,7 +23,7 @@ public:
virtual void Unload(); virtual void Unload();
void FadeToActualBrightness(); void FadeToActualBrightness();
void SetBrightness( float fBrightness ); /* overrides pref and Cover */ void SetBrightness( float fBrightness ); // overrides pref and Cover
DancingCharacters* GetDancingCharacters(); DancingCharacters* GetDancingCharacters();
@@ -33,7 +33,6 @@ protected:
BackgroundImpl *m_pImpl; BackgroundImpl *m_pImpl;
}; };
#endif #endif
/* /*
+1 -4
View File
@@ -1,18 +1,15 @@
/* Foreground - Foreground in front of notes while playing. */
#ifndef FOREGROUND_H #ifndef FOREGROUND_H
#define FOREGROUND_H #define FOREGROUND_H
#include "ActorFrame.h" #include "ActorFrame.h"
class Song; class Song;
/** @brief Foreground in front of notes while playing. */
class Foreground: public ActorFrame class Foreground: public ActorFrame
{ {
public: public:
~Foreground(); ~Foreground();
void Unload(); void Unload();
void LoadFromSong( const Song *pSong ); void LoadFromSong( const Song *pSong );
virtual void Update( float fDeltaTime ); virtual void Update( float fDeltaTime );