summaryrefslogtreecommitdiff
path: root/song.h
diff options
context:
space:
mode:
authorSimon Gagne <gags2431@usherbrooke.ca>2023-03-21 13:16:41 -0400
committerSimon Gagne <gags2431@usherbrooke.ca>2023-03-21 13:16:41 -0400
commit1a9b75fc21606d8d9ebda3092c65989b3104d775 (patch)
treecf266a792620b50540d1e1b6281d2861af846b40 /song.h
parent7fa3812f1297c444754f22c3141facecbda92ec7 (diff)
Merge chart file
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"