Files
itgmania212121/stepmania/src/ScreenJukebox.h
T

40 lines
976 B
C++
Raw Normal View History

2003-03-09 00:55:49 +00:00
#ifndef ScreenJukebox_H
#define ScreenJukebox_H
2003-01-31 21:34:34 +00:00
/*
-----------------------------------------------------------------------------
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:
2003-03-09 00:55:49 +00:00
ScreenJukebox( bool bDemonstration = false );
2003-01-31 21:34:34 +00:00
~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();
2003-01-31 21:34:34 +00:00
protected:
2003-04-13 01:09:19 +00:00
Transition m_In;
Transition m_Out;
2003-03-09 00:55:49 +00:00
static bool PrepareForJukebox();
2003-01-31 21:34:34 +00:00
};
2003-03-09 00:55:49 +00:00
#endif
2003-01-31 21:34:34 +00:00