Files
itgmania212121/stepmania/src/NotesWriterSM.h
T
Glenn Maynard 0ff6f863ee s/Song.h/song.h/
I'd prefer "Song.h", but it's not worth losing history for, and SF will
choke on that rename anyway.
2003-02-16 04:28:17 +00:00

16 lines
282 B
C++

#ifndef NOTES_WRITER_SM_H
#define NOTES_WRITER_SM_H
#include "song.h"
class NotesWriterSM
{
void WriteGlobalTags(FILE *fp, const Song &out);
void WriteSMNotesTag( const Notes &in, FILE* fp );
public:
bool Write( CString sPath, const Song &out, bool bSavingCache );
};
#endif