fix dtors
This commit is contained in:
@@ -35,6 +35,7 @@ protected:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
ScoreKeeper(PlayerState* pPlayerState,PlayerStageStats* pPlayerStageStats) { m_pPlayerState=pPlayerState; m_pPlayerStageStats=pPlayerStageStats; }
|
ScoreKeeper(PlayerState* pPlayerState,PlayerStageStats* pPlayerStageStats) { m_pPlayerState=pPlayerState; m_pPlayerStageStats=pPlayerStageStats; }
|
||||||
|
virtual ~ScoreKeeper() { }
|
||||||
virtual void Load(
|
virtual void Load(
|
||||||
const vector<Song*>& apSongs,
|
const vector<Song*>& apSongs,
|
||||||
const vector<Steps*>& apSteps,
|
const vector<Steps*>& apSteps,
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ public:
|
|||||||
ScoreKeeperMAX2(
|
ScoreKeeperMAX2(
|
||||||
PlayerState* pPlayerState,
|
PlayerState* pPlayerState,
|
||||||
PlayerStageStats* pPlayerStageStats );
|
PlayerStageStats* pPlayerStageStats );
|
||||||
|
virtual ~ScoreKeeperMAX2() { }
|
||||||
|
|
||||||
void Load(
|
void Load(
|
||||||
const vector<Song*>& apSongs,
|
const vector<Song*>& apSongs,
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
class ScoreKeeperRave : public ScoreKeeper
|
class ScoreKeeperRave : public ScoreKeeper
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// Overrides
|
|
||||||
ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats );
|
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 OnNextSong( int iSongInCourseIndex, const Steps* pSteps, const NoteData* pNoteData ); // before a song plays (called multiple times if course)
|
||||||
void HandleTapScore( TapNoteScore score );
|
void HandleTapScore( TapNoteScore score );
|
||||||
void HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow );
|
void HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow );
|
||||||
|
|||||||
Reference in New Issue
Block a user