From 816ea7f8ef30ab24fb93d8fb0c5fb0e9874925e6 Mon Sep 17 00:00:00 2001 From: muskit <15199219+muskit@users.noreply.github.com> Date: Sat, 2 Sep 2023 15:36:06 -0700 Subject: [PATCH] Update Chart.cs --- Scripts/Data/Chart/Chart.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Scripts/Data/Chart/Chart.cs b/Scripts/Data/Chart/Chart.cs index fe95ec8..8c4a5eb 100644 --- a/Scripts/Data/Chart/Chart.cs +++ b/Scripts/Data/Chart/Chart.cs @@ -14,7 +14,8 @@ namespace WacK.Data.Chart public class Chart { public static bool doneLoading { get; private set; } = false; - // [ms] = List (list for chord marking creation) + // Key of dictionaries are in milliseconds + // List is for chords public SortedList> playNotes { get; private set; } public SortedList> timeSigChgs { get; private set; } public SortedList> tempoChgs { get; private set; } @@ -329,4 +330,4 @@ namespace WacK.Data.Chart doneLoading = true; } } -} \ No newline at end of file +}