Files
itgmania212121/stepmania/src/NotesLoaderSM.h
T
2002-09-29 05:06:18 +00:00

26 lines
509 B
C++

#ifndef NOTES_LOADER_SM_H
#define NOTES_LOADER_SM_H
#include "Song.h"
#include "Notes.h"
#include "NotesLoader.h"
class SMLoader: public NotesLoader {
void LoadFromSMTokens(
CString sNotesType,
CString sDescription,
CString sDifficulty,
CString sMeter,
CString sRadarValues,
CString sNoteData,
Notes &out);
public:
bool LoadFromSMFile( CString sPath, Song &out );
void GetApplicableFiles( CString sPath, CStringArray &out );
bool LoadFromDir( CString sPath, Song &out );
};
#endif