18 lines
430 B
C++
18 lines
430 B
C++
#ifndef NOTES_LOADER_BMS_H
|
|
#define NOTES_LOADER_BMS_H
|
|
|
|
#include "Song.h"
|
|
#include "Notes.h"
|
|
#include "NotesLoader.h"
|
|
|
|
class BMSLoader: public NotesLoader {
|
|
bool LoadFromBMSFile( const CString &sPath, Notes &out1 );
|
|
void mapBMSTrackToDanceNote( int iBMSTrack, int &iDanceColOut, char &cNoteCharOut );
|
|
|
|
public:
|
|
void GetApplicableFiles( CString sPath, CStringArray &out );
|
|
bool LoadFromDir( CString sDir, Song &out );
|
|
};
|
|
|
|
#endif
|