working on ScreenHowToPlay

This commit is contained in:
Chris Danford
2003-04-05 03:49:03 +00:00
parent 0bd83b6e3e
commit 69d307a4bd
8 changed files with 98 additions and 9 deletions
+13 -1
View File
@@ -10,12 +10,24 @@
*/
#include "ScreenAttract.h"
#include "Player.h"
#include "LifeMeterBar.h"
class ScreenHowToPlay : public ScreenAttract
{
public:
ScreenHowToPlay() : ScreenAttract("ScreenHowToPlay") {};
ScreenHowToPlay();
~ScreenHowToPlay();
virtual void Update( float fDelta );
protected:
LifeMeterBar m_LifeMeter;
Player m_Player;
Song* m_pSong;
float m_fFakeSecondsIntoSong;
};