Files
itgmania212121/stepmania/src/ScreenCredits.h
T
2004-01-17 23:14:56 +00:00

35 lines
763 B
C++

/*
-----------------------------------------------------------------------------
File: ScreenCredits.h
Desc: Music plays and song names scroll across the screen.
Copyright (c) 2001-2003 by the person(s) listed below. All rights reserved.
Chris Danford
Glenn Maynard
-----------------------------------------------------------------------------
*/
#include "ScreenAttract.h"
#include "Transition.h"
#include "ActorScroller.h"
class ScreenCredits : public ScreenAttract
{
public:
ScreenCredits( CString sName );
virtual ~ScreenCredits();
virtual void HandleScreenMessage( const ScreenMessage SM );
private:
ActorScroller m_ScrollerBackgrounds;
ActorScroller m_ScrollerFrames;
ActorScroller m_ScrollerTexts;
BGAnimation m_Overlay;
};