Files
itgmania212121/stepmania/src/NotesLoaderBMS.h
T
Glenn Maynard 33a0e450e4 Switch to separate note patterns for couples. Add loader support.
This will break saving couples to DWI and probably the editor, too.
Getting to that.
2002-09-07 05:04:04 +00:00

17 lines
364 B
C++

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