ScoreKeeper is not an Actor
This commit is contained in:
@@ -11,7 +11,6 @@
|
|||||||
* Results are injected directly into GameState.
|
* Results are injected directly into GameState.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "Actor.h"
|
|
||||||
#include "Attack.h"
|
#include "Attack.h"
|
||||||
#include "GameConstantsAndTypes.h" // for TapNoteScore and HoldNoteScore
|
#include "GameConstantsAndTypes.h" // for TapNoteScore and HoldNoteScore
|
||||||
class NoteData;
|
class NoteData;
|
||||||
@@ -22,7 +21,7 @@ struct PlayerState;
|
|||||||
struct PlayerStageStats;
|
struct PlayerStageStats;
|
||||||
|
|
||||||
|
|
||||||
class ScoreKeeper: public Actor
|
class ScoreKeeper
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
PlayerState* m_pPlayerState;
|
PlayerState* m_pPlayerState;
|
||||||
|
|||||||
@@ -123,10 +123,6 @@ void ScoreKeeperRave::AddSuperMeterDelta( float fUnscaledPercentChange )
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ScoreKeeperRave::Update( float fDelta )
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void ScoreKeeperRave::LaunchAttack( AttackLevel al )
|
void ScoreKeeperRave::LaunchAttack( AttackLevel al )
|
||||||
{
|
{
|
||||||
PlayerNumber pn = m_pPlayerState->m_PlayerNumber;
|
PlayerNumber pn = m_pPlayerState->m_PlayerNumber;
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ class ScoreKeeperRave : public ScoreKeeper
|
|||||||
public:
|
public:
|
||||||
// Overrides
|
// Overrides
|
||||||
ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats );
|
ScoreKeeperRave( PlayerState* pPlayerState, PlayerStageStats* pPlayerStageStats );
|
||||||
void Update( float fDelta );
|
|
||||||
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