Files
itgmania212121/stepmania/src/NotesLoaderBMS.h
T

17 lines
364 B
C++
Raw Normal View History

2002-09-06 23:24:40 +00:00
#ifndef NOTES_LOADER_BMS_H
#define NOTES_LOADER_BMS_H
#include "Song.h"
#include "Notes.h"
#include "NotesLoader.h"
2002-09-06 23:24:40 +00:00
class BMSLoader {
bool LoadFromBMSFile( const CString &sPath, Notes &out1, Notes &out2 );
void mapBMSTrackToDanceNote( int iBMSTrack, int &iDanceColOut, char &cNoteCharOut );
2002-09-06 23:24:40 +00:00
public:
bool LoadFromBMSDir( CString sDir, Song &out );
};
#endif