Etterna 0.74.4
Loading...
Searching...
No Matches
NotesLoaderBMS.h
1#ifndef NOTES_LOADER_BMS_H
2#define NOTES_LOADER_BMS_H
3
4#include <string>
5#include <vector>
6
7class Song;
8class Steps;
9
11namespace BMSLoader {
12void
13GetApplicableFiles(const std::string& sPath, std::vector<std::string>& out);
14bool
15LoadFromDir(const std::string& sDir, Song& out);
16bool
17LoadNoteDataFromSimfile(const std::string& cachePath, Steps& out);
18} // namespace BMSLoader
19
20#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 .BMS files.
Definition NotesLoaderBMS.h:11