2002-09-06 23:24:40 +00:00
|
|
|
#ifndef NOTES_LOADER_KSF_H
|
|
|
|
|
#define NOTES_LOADER_KSF_H
|
|
|
|
|
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
#include "Notes.h"
|
|
|
|
|
|
|
|
|
|
class KSFLoader {
|
|
|
|
|
bool LoadFromKSFFile( const CString &sPath, Notes &out );
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
bool LoadFromKSFDir( CString sDir, Song &out );
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|