Update Chart.cs

This commit is contained in:
muskit
2023-09-02 15:36:06 -07:00
committed by GitHub
parent 8e6966bfcd
commit 816ea7f8ef
+3 -2
View File
@@ -14,7 +14,8 @@ namespace WacK.Data.Chart
public class Chart public class Chart
{ {
public static bool doneLoading { get; private set; } = false; public static bool doneLoading { get; private set; } = false;
// [ms] = List<Note> (list for chord marking creation) // Key of dictionaries are in milliseconds
// List is for chords
public SortedList<float, List<NotePlay>> playNotes { get; private set; } public SortedList<float, List<NotePlay>> playNotes { get; private set; }
public SortedList<float, NoteEvent<(int, int)>> timeSigChgs { get; private set; } public SortedList<float, NoteEvent<(int, int)>> timeSigChgs { get; private set; }
public SortedList<float, NoteEvent<float>> tempoChgs { get; private set; } public SortedList<float, NoteEvent<float>> tempoChgs { get; private set; }
@@ -329,4 +330,4 @@ namespace WacK.Data.Chart
doneLoading = true; doneLoading = true;
} }
} }
} }