fix dtors

This commit is contained in:
Glenn Maynard
2005-03-19 21:30:33 +00:00
parent 3d7325b457
commit 954313a942
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -35,6 +35,7 @@ protected:
public:
ScoreKeeper(PlayerState* pPlayerState,PlayerStageStats* pPlayerStageStats) { m_pPlayerState=pPlayerState; m_pPlayerStageStats=pPlayerStageStats; }
virtual ~ScoreKeeper() { }
virtual void Load(
const vector<Song*>& apSongs,
const vector<Steps*>& apSteps,
+1
View File
@@ -34,6 +34,7 @@ public:
ScoreKeeperMAX2(
PlayerState* pPlayerState,
PlayerStageStats* pPlayerStageStats );
virtual ~ScoreKeeperMAX2() { }
void Load(
const vector<Song*>& apSongs,
+1 -1
View File
@@ -10,8 +10,8 @@
class ScoreKeeperRave : public ScoreKeeper
{
public:
// Overrides
ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats );
virtual ~ScoreKeeperRave() { }
void OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ); // before a song plays (called multiple times if course)
void HandleTapScore( TapNoteScore score );
void HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow );