summaryrefslogtreecommitdiff
path: root/song.h
diff options
context:
space:
mode:
Diffstat (limited to 'song.h')
-rw-r--r--song.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/song.h b/song.h
index 5af5fbd..69cdbd5 100644
--- a/song.h
+++ b/song.h
@@ -37,6 +37,11 @@ class Song{
std::string getGenre();
std::string getAudioFile();
+ std::vector<ChordNote> easy;
+ std::vector<ChordNote> medium;
+ std::vector<ChordNote> hard;
+ std::vector<ChordNote> expert;
+
private:
const std::string chartFile;
std::string title;
@@ -49,10 +54,6 @@ class Song{
bool difficulty[4]; // Which difficulties are available
int resolution;
std::vector<Timestamp> timestamps;
- std::vector<ChordNote> easy;
- std::vector<ChordNote> medium;
- std::vector<ChordNote> hard;
- std::vector<ChordNote> expert;
};
//#include "song.cpp"