Files
itgmania212121/stepmania/src/ScreenJukebox.h
T
Chris Danford 31aa613295 Cleanup of theme element names
Renamed ScreenSelectMax* back to their old names
Replaced all hard-coded transitions with TransitionBGAnimations
2003-03-09 00:55:49 +00:00

37 lines
904 B
C++

#ifndef ScreenJukebox_H
#define ScreenJukebox_H
/*
-----------------------------------------------------------------------------
Class: ScreenJukebox
Desc: Like ScreenDemonstration, Plays whole songs continuously.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScreenGameplay.h"
#include "Sprite.h"
class ScreenJukebox : public ScreenGameplay
{
public:
ScreenJukebox( bool bDemonstration = false );
~ScreenJukebox();
virtual void Update( float fDeltaTime );
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
protected:
TransitionBGAnimation m_In;
TransitionBGAnimation m_Out;
};
#endif