Etterna 0.74.4
Loading...
Searching...
No Matches
NotesLoaderKSF.h
1#ifndef NOTES_LOADER_KSF_H
2#define NOTES_LOADER_KSF_H
3
4class Song;
5class Steps;
7namespace KSFLoader {
8void
9GetApplicableFiles(const std::string& sPath, std::vector<std::string>& out);
10bool
11LoadFromDir(const std::string& sDir, Song& out);
12bool
13LoadNoteDataFromSimfile(const std::string& cachePath, Steps& out);
14}
15
16#endif
Holds all music metadata and steps for one song.
Definition Song.h:65
Holds note information for a Song.
Definition Steps.h:42
Reads a Song from a set of .KSF files.
Definition NotesLoaderKSF.h:7