Pass in a PlayerNumber as well.

(This breaks other code, commits coming.)
This commit is contained in:
Steve Checkoway
2006-07-17 00:54:46 +00:00
parent 807e24827c
commit d46ec7136e
2 changed files with 10 additions and 8 deletions
+3 -3
View File
@@ -11,9 +11,9 @@ class NoteData;
class PlayerStageStats;
namespace NoteDataWithScoring
{
bool IsRowCompletelyJudged( const NoteData &in, unsigned iRow );
TapNoteScore MinTapNoteScore( const NoteData &in, unsigned iRow );
const TapNote &LastTapNoteWithResult( const NoteData &in, unsigned iRow, PlayerNumber pn = PLAYER_INVALID );
bool IsRowCompletelyJudged( const NoteData &in, unsigned iRow, PlayerNumber pn );
TapNoteScore MinTapNoteScore( const NoteData &in, unsigned iRow, PlayerNumber pn );
const TapNote &LastTapNoteWithResult( const NoteData &in, unsigned iRow, PlayerNumber pn );
void GetActualRadarValues( const NoteData &in, const PlayerStageStats &pss, float fSongSeconds, RadarValues& out );
};