diff --git a/src/Background.h b/src/Background.h index b4a4622ca3..214c4b3936 100644 --- a/src/Background.h +++ b/src/Background.h @@ -23,8 +23,8 @@ public: virtual void Unload(); void FadeToActualBrightness(); - void SetBrightness( float fBrightness ); /* overrides pref and Cover */ - + void SetBrightness( float fBrightness ); // overrides pref and Cover + DancingCharacters* GetDancingCharacters(); void GetLoadedBackgroundChanges( vector **pBackgroundChangesOut ); @@ -33,7 +33,6 @@ protected: BackgroundImpl *m_pImpl; }; - #endif /* diff --git a/src/Foreground.h b/src/Foreground.h index 40e5ec1450..96f0f0a213 100644 --- a/src/Foreground.h +++ b/src/Foreground.h @@ -1,18 +1,15 @@ -/* Foreground - Foreground in front of notes while playing. */ #ifndef FOREGROUND_H #define FOREGROUND_H #include "ActorFrame.h" class Song; - +/** @brief Foreground in front of notes while playing. */ class Foreground: public ActorFrame { public: ~Foreground(); - void Unload(); - void LoadFromSong( const Song *pSong ); virtual void Update( float fDeltaTime );