Files
itgmania212121/stepmania/src/ScreenJukebox.h
T
2003-04-13 01:09:19 +00:00

40 lines
976 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 );
/* Hack: public for JukeboxMenu */
static bool SetSong();
protected:
Transition m_In;
Transition m_Out;
static bool PrepareForJukebox();
};
#endif