make the How To Play screen get its steps from an outside file rather than be hardcoded.

This commit is contained in:
Thad Ward
2003-09-08 17:11:52 +00:00
parent 955e6803ef
commit 6d9228f4fa
3 changed files with 137 additions and 141 deletions
+5 -1
View File
@@ -27,6 +27,7 @@ public:
virtual void DrawPrimitives();
protected:
virtual void Step( float fDelta );
LifeMeterBar m_LifeMeterBar;
BGAnimation m_Overlay;
Player m_Player;
@@ -34,10 +35,13 @@ protected:
Model m_mDancePad;
bool m_bUsingCharacter;
bool m_bUsingPad;
bool m_bUsingLifeBar;
bool m_bUsingPlayer;
int m_iPerfects;
int m_iNumPerfects;
Song* m_pSong;
float m_fFakeSecondsIntoSong;
float m_fSecondsUntilNextKeyFrame;
};