working on course ranking scores and mem card saving

This commit is contained in:
Chris Danford
2003-02-14 21:42:44 +00:00
parent b47254c32b
commit e05738f7f7
21 changed files with 672 additions and 422 deletions
+4 -5
View File
@@ -54,16 +54,15 @@ public:
void CreateBlank( NotesType ntTo );
// High scores;
int m_iNumTimesPlayed;
// High scores
struct MemCardScore
{
int iNumTimesPlayed;
Grade grade;
float fScore;
} m_MemCardScores[NUM_PLAYERS];
} m_MemCardScores[NUM_MEMORY_CARDS];
bool AddMemCardRecord( PlayerNumber pn, Grade grade, float fScore ); // return true if new high score
void AddScore( PlayerNumber pn, Grade grade, float fScore, bool& bNewRecordOut );
void TidyUpData();