Esempio n. 1
0
        public static void AddNoteChange(NoteDetails change)
        {
            int noteIndex = BeatMapData.GetNoteWithSamePosition(change, notes);

            if (noteIndex > -1)
            {
                changes.Add(notes[noteIndex]);
            }
        }