This commit is contained in:
Steve Checkoway
2006-10-01 01:59:35 +00:00
parent da9fa5af22
commit c99a463f62
2 changed files with 5 additions and 10 deletions
+2 -4
View File
@@ -18,10 +18,8 @@
#include "song.h"
#include "NoteDataWithScoring.h"
ScoreKeeperNormal::ScoreKeeperNormal(
PlayerState* pPlayerState,
PlayerStageStats* pPlayerStageStats ):
ScoreKeeper(pPlayerState,pPlayerStageStats)
ScoreKeeperNormal::ScoreKeeperNormal( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats ):
ScoreKeeper(pPlayerState, pPlayerStageStats)
{
}
+3 -6
View File
@@ -1,7 +1,7 @@
/* ScoreKeeperNormal - */
#ifndef ScoreKeeperNormal_H
#define ScoreKeeperNormal_H
#ifndef SCORE_KEEPER_NORMAL_H
#define SCORE_KEEPER_NORMAL_H
#include "ScoreKeeper.h"
#include "Attack.h"
@@ -40,10 +40,7 @@ class ScoreKeeperNormal: public ScoreKeeper
int m_ComboBonusFactor[NUM_TapNoteScore];
public:
ScoreKeeperNormal(
PlayerState* pPlayerState,
PlayerStageStats* pPlayerStageStats );
virtual ~ScoreKeeperNormal() { }
ScoreKeeperNormal( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats );
void Load(
const vector<Song*>& apSongs,