Files
itgmania212121/stepmania/src/NotesWriterSM.h
T

16 lines
282 B
C++
Raw Normal View History

2002-12-13 23:56:13 +00:00
#ifndef NOTES_WRITER_SM_H
#define NOTES_WRITER_SM_H
#include "Song.h"
class NotesWriterSM
{
void WriteGlobalTags(FILE *fp, const Song &out);
2002-12-14 21:36:52 +00:00
void WriteSMNotesTag( const Notes &in, FILE* fp );
2002-12-13 23:56:13 +00:00
public:
bool Write( CString sPath, const Song &out, bool bSavingCache );
};
#endif