2003-01-08 23:43:54 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: ScreenDemonstration
|
|
|
|
|
|
|
|
|
|
Desc: Base class for all attraction screens.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
2003-03-09 00:55:49 +00:00
|
|
|
#include "ScreenJukebox.h"
|
2003-01-08 23:43:54 +00:00
|
|
|
|
|
|
|
|
|
2003-03-09 00:55:49 +00:00
|
|
|
class ScreenDemonstration : public ScreenJukebox
|
2003-01-08 23:43:54 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2003-09-27 22:30:51 +00:00
|
|
|
ScreenDemonstration( CString sName );
|
2003-01-10 02:22:07 +00:00
|
|
|
~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:
|
2003-03-09 00:55:49 +00:00
|
|
|
BGAnimation m_Overlay;
|
2003-01-08 23:43:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|