Files
itgmania212121/stepmania/src/NotesLoaderDWI.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

25 lines
514 B
C++

#ifndef NOTES_LOADER_DWI_H
#define NOTES_LOADER_DWI_H
#include "Song.h"
#include "Notes.h"
#include "GameInput.h"
#include "NotesLoader.h"
#include "Song.h"
#include "Notes.h"
class DWILoader {
void DWIcharToNote( char c, GameController i, DanceNote &note1Out, DanceNote &note2Out );
bool LoadFromDWITokens(
CString sMode, CString sDescription, CString sNumFeet, CString sStepData1,
CString sStepData2,
Notes &out, Notes &out2);
public:
bool LoadFromDWIFile( CString sPath, Song &out );
};
#endif