Files
itgmania212121/stepmania/src/NotesLoaderKSF.h
T

16 lines
240 B
C++
Raw Normal View History

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