Make internal functions private.
This commit is contained in:
@@ -61,10 +61,6 @@ public:
|
|||||||
void HandleHoldActiveSeconds( float fMusicSecondsHeld ) {};
|
void HandleHoldActiveSeconds( float fMusicSecondsHeld ) {};
|
||||||
void HandleHoldCheckpointScore( const NoteData &nd, int iRow, int iNumHoldsHeldThisRow, int iNumHoldsMissedThisRow );
|
void HandleHoldCheckpointScore( const NoteData &nd, int iRow, int iNumHoldsHeldThisRow, int iNumHoldsMissedThisRow );
|
||||||
|
|
||||||
void HandleTapNoteScoreInternal( TapNoteScore tns, TapNoteScore maximum );
|
|
||||||
void HandleComboInternal( int iNumHitContinueCombo, int iNumHitMaintainCombo, int iNumBreakCombo, int iNumMissedInRow );
|
|
||||||
void GetRowCounts( const NoteData &nd, int iRow, int &iNumHitContinueCombo, int &iNumHitMaintainCombo, int &iNumBreakCombo, int &iNumMissedInRow );
|
|
||||||
|
|
||||||
// This must be calculated using only cached radar values so that we can
|
// This must be calculated using only cached radar values so that we can
|
||||||
// do it quickly.
|
// do it quickly.
|
||||||
static int GetPossibleDancePoints( const RadarValues& fRadars );
|
static int GetPossibleDancePoints( const RadarValues& fRadars );
|
||||||
@@ -80,6 +76,12 @@ public:
|
|||||||
static int HoldNoteScoreToDancePoints( HoldNoteScore hns, bool bBeginner );
|
static int HoldNoteScoreToDancePoints( HoldNoteScore hns, bool bBeginner );
|
||||||
static int TapNoteScoreToGradePoints( TapNoteScore tns, bool bBeginner );
|
static int TapNoteScoreToGradePoints( TapNoteScore tns, bool bBeginner );
|
||||||
static int HoldNoteScoreToGradePoints( HoldNoteScore hns, bool bBeginner );
|
static int HoldNoteScoreToGradePoints( HoldNoteScore hns, bool bBeginner );
|
||||||
|
|
||||||
|
private:
|
||||||
|
void HandleTapNoteScoreInternal( TapNoteScore tns, TapNoteScore maximum );
|
||||||
|
void HandleComboInternal( int iNumHitContinueCombo, int iNumHitMaintainCombo, int iNumBreakCombo, int iNumMissedInRow );
|
||||||
|
void GetRowCounts( const NoteData &nd, int iRow, int &iNumHitContinueCombo, int &iNumHitMaintainCombo, int &iNumBreakCombo, int &iNumMissedInRow );
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user