Files
itgmania212121/stepmania/src/NotesLoaderBMS.h
T
Glenn Maynard 0ff6f863ee s/Song.h/song.h/
I'd prefer "Song.h", but it's not worth losing history for, and SF will
choke on that rename anyway.
2003-02-16 04:28:17 +00:00

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