Add accessors.

This commit is contained in:
Glenn Maynard
2002-12-14 21:33:29 +00:00
parent 36cff08e99
commit a3477d477d
2 changed files with 13 additions and 0 deletions
+10
View File
@@ -86,6 +86,16 @@ void Notes::GetNoteData( NoteData* pNoteDataOut ) const
NoteDataUtil::LoadFromSMNoteDataString( *pNoteDataOut, m_sSMNoteData );
}
void Notes::SetSMNoteData( const CString &out )
{
m_sSMNoteData = out;
}
CString Notes::GetSMNoteData() const
{
return m_sSMNoteData;
}
// Color is a function of Difficulty and Intended Style
NotesDisplayType Notes::GetNotesDisplayType() const
{
+3
View File
@@ -48,6 +48,9 @@ public:
CString m_sSMNoteData;
void GetNoteData( NoteData* pNoteDataOut ) const;
void SetNoteData( NoteData* pNewNoteData );
void SetSMNoteData( const CString &out );
CString GetSMNoteData() const;
NotesDisplayType GetNotesDisplayType() const;
RageColor GetColor() const;