Files
itgmania212121/stepmania/src/LyricsLoader.h
T
Glenn Maynard 0b6daf73f6 LRC reading is so simple now that the LRCFile abstraction only
makes it much more complicated; merge it with LyricsLoader.
2003-03-22 19:19:37 +00:00

22 lines
467 B
C++

#ifndef LYRICS_LOADER_H
#define LYRICS_LOADER_H
/*
* Loads lyrics from an LRC file.
*/
#include "song.h"
class LyricsLoader {
public:
bool LoadFromLRCFile( CString sPath, Song &out );
};
#endif
/*
-----------------------------------------------------------------------------
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
Kevin Slaughter
Glenn Maynard
-----------------------------------------------------------------------------
*/