Files
itgmania212121/stepmania/src/NotesLoaderDWI.h
T

25 lines
514 B
C++
Raw Normal View History

2002-09-06 23:24:40 +00:00
#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);
2002-09-06 23:24:40 +00:00
public:
bool LoadFromDWIFile( CString sPath, Song &out );
};
#endif