Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements
Fix whitespace changes
This commit is contained in:
committed by
Martin Natano
parent
f0680a29fc
commit
0cba3579de
@@ -11,9 +11,9 @@ public:
|
||||
ScoreKeeperShared( PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats );
|
||||
|
||||
virtual void Load(
|
||||
const vector<Song*> &apSongs,
|
||||
const vector<Steps*> &apSteps,
|
||||
const vector<AttackArray> &asModifiers );
|
||||
const std::vector<Song*> &apSongs,
|
||||
const std::vector<Steps*> &apSteps,
|
||||
const std::vector<AttackArray> &asModifiers );
|
||||
|
||||
virtual void DrawPrimitives();
|
||||
virtual void Update( float fDelta );
|
||||
|
||||
Reference in New Issue
Block a user