Files
itgmania212121/stepmania/src/NotesWriterSM.h
T
2003-12-04 22:58:18 +00:00

17 lines
325 B
C++

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