keep track of life

This commit is contained in:
Glenn Maynard
2003-10-16 06:49:02 +00:00
parent 64bfcd2a79
commit ce9b1909f2
3 changed files with 32 additions and 0 deletions
+5
View File
@@ -57,6 +57,11 @@ struct StageStats
int iSongsPassed[NUM_PLAYERS];
int iSongsPlayed[NUM_PLAYERS];
int iTotalError[NUM_PLAYERS];
enum { LIFE_RECORD_RESOLUTION=1000 };
float fLifeRecord[NUM_PLAYERS][LIFE_RECORD_RESOLUTION];
void SetLifeRecord( PlayerNumber pn, float life, float pos );
void GetLifeRecord( PlayerNumber pn, float *life, int nout ) const;
};