clarify comment

This commit is contained in:
msk
2023-08-23 17:27:39 -07:00
parent 172675a722
commit 342c18cb15
+2 -1
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; }