2002-08-26 05:53:48 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: ScreenHowToPlay
|
|
|
|
|
|
2003-01-08 23:43:54 +00:00
|
|
|
Desc: Base class for all attraction screens.
|
2002-08-26 05:53:48 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
2003-01-08 23:43:54 +00:00
|
|
|
#include "ScreenAttract.h"
|
2003-04-05 03:49:03 +00:00
|
|
|
#include "Player.h"
|
|
|
|
|
#include "LifeMeterBar.h"
|
2002-08-26 05:53:48 +00:00
|
|
|
|
|
|
|
|
|
2003-01-08 23:43:54 +00:00
|
|
|
class ScreenHowToPlay : public ScreenAttract
|
2002-08-26 05:53:48 +00:00
|
|
|
{
|
|
|
|
|
public:
|
2003-04-05 03:49:03 +00:00
|
|
|
ScreenHowToPlay();
|
|
|
|
|
~ScreenHowToPlay();
|
|
|
|
|
|
|
|
|
|
virtual void Update( float fDelta );
|
2003-05-26 09:18:44 +00:00
|
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
2003-04-05 03:49:03 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
LifeMeterBar m_LifeMeter;
|
|
|
|
|
Player m_Player;
|
|
|
|
|
|
|
|
|
|
Song* m_pSong;
|
|
|
|
|
float m_fFakeSecondsIntoSong;
|
2002-08-26 05:53:48 +00:00
|
|
|
};
|
|
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
|
2003-01-08 23:43:54 +00:00
|
|
|
|