Add course support to FadingBanner.

This commit is contained in:
Glenn Maynard
2002-08-21 07:59:04 +00:00
parent 118f97fd1b
commit b71dde95c7
2 changed files with 8 additions and 1 deletions
+7 -1
View File
@@ -70,4 +70,10 @@ void FadingBanner::SetRoulette()
{
BeforeChange();
m_Banner[0].LoadRoulette();
}
}
void FadingBanner::SetFromCourse( Course *pCourse )
{
BeforeChange();
m_Banner[0].LoadFromCourse( pCourse );
}
+1
View File
@@ -26,6 +26,7 @@ public:
void SetFromSong( Song* pSong );
void SetFromGroup( const CString &sGroupName );
void SetRoulette();
void SetFromCourse( Course *pCourse );
//void SetFromTexture( const CString &sTexturePath );
protected: