Files
itgmania212121/stepmania/src/ScreenDemonstration.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

31 lines
767 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenDemonstration
Desc: Base class for all attraction screens.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScreenJukebox.h"
class ScreenDemonstration : public ScreenJukebox
{
public:
ScreenDemonstration();
~ScreenDemonstration();
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:
BGAnimation m_Overlay;
};