31aa613295
Renamed ScreenSelectMax* back to their old names Replaced all hard-coded transitions with TransitionBGAnimations
31 lines
767 B
C++
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;
|
|
};
|
|
|
|
|
|
|