diff options
Diffstat (limited to 'song.cpp')
-rw-r--r-- | song.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -321,5 +321,11 @@ std::string Song::getAudioFile(){ return audioFile; } +void Song::trim(int difficulty){ + // TODO: make this fuction use the difficulty parameter + std::vector<ChordNote>*chords = &expert; + chords->trim(); +} + // vim: syntax=cpp.doxygen |