Etterna 0.74.4
Loading...
Searching...
No Matches
LyricsLoader.h
1#ifndef LYRICS_LOADER_H
2#define LYRICS_LOADER_H
3
4class Song;
7{
8 public:
13 bool LoadFromLRCFile(const std::string& sPath, Song& out);
14};
15
16#endif
Loads lyrics from an LRC file.
Definition LyricsLoader.h:7
bool LoadFromLRCFile(const std::string &sPath, Song &out)
Load the lyrics into the Song.
Definition LyricsLoader.cpp:23
Holds all music metadata and steps for one song.
Definition Song.h:65