Files
itgmania212121/stepmania/src/NotesLoaderSM.h
T

26 lines
509 B
C++
Raw Normal View History

2002-09-06 23:24:40 +00:00
#ifndef NOTES_LOADER_SM_H
#define NOTES_LOADER_SM_H
#include "Song.h"
#include "Notes.h"
2002-09-11 05:15:46 +00:00
#include "NotesLoader.h"
2002-09-06 23:24:40 +00:00
2002-09-11 05:15:46 +00:00
class SMLoader: public NotesLoader {
2002-09-06 23:24:40 +00:00
void LoadFromSMTokens(
CString sNotesType,
CString sDescription,
2002-09-29 05:06:18 +00:00
CString sDifficulty,
2002-09-06 23:24:40 +00:00
CString sMeter,
CString sRadarValues,
CString sNoteData,
Notes &out);
public:
bool LoadFromSMFile( CString sPath, Song &out );
2002-09-11 05:15:46 +00:00
void GetApplicableFiles( CString sPath, CStringArray &out );
bool LoadFromDir( CString sPath, Song &out );
2002-09-06 23:24:40 +00:00
};
#endif