make NoteDataUtil::LoadTransformedLights work

This commit is contained in:
Glenn Maynard
2005-01-23 17:58:32 +00:00
parent 18e32dbda4
commit 5da9c848d6
3 changed files with 138 additions and 42 deletions
+6 -1
View File
@@ -104,7 +104,12 @@ public:
void RemoveHoldNote( int index );
HoldNote &GetHoldNote( int index ) { ASSERT( index < (int) m_HoldNotes.size() ); return m_HoldNotes[index]; }
const HoldNote &GetHoldNote( int index ) const { ASSERT( index < (int) m_HoldNotes.size() ); return m_HoldNotes[index]; }
bool IsHoldNoteAtBeat( int iTrack, int iRow ) const; /* must be in 2sAnd3s */
/* Determine if a given spot is within a hold note (being on the tail doesn't count).
* Return true if so. If pHeadRow is non-NULL, return the row of the head. If pTailRow is
* non-NULL, return the row of the tail. This function is faster if pTailRow is NULL.
* Must be in 2sAnd3s. */
bool IsHoldNoteAtBeat( int iTrack, int iRow, int *pHeadRow = NULL, int *pTailRow = NULL ) const;
//
// statistics