Files
itgmania212121/stepmania/src/NotesWriterSM.h
T
2003-08-03 00:13:55 +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 Steps &in, FILE* fp );
public:
bool Write( CString sPath, const Song &out, bool bSavingCache );
};
#endif