AlphaTab.Rendering.Glyphs.TabNoteChordGlyph.AddNoteGlyph C# (CSharp) Method

AddNoteGlyph() public method

public AddNoteGlyph ( NoteNumberGlyph noteGlyph, Note note ) : void
noteGlyph NoteNumberGlyph
note AlphaTab.Model.Note
return void
        public void AddNoteGlyph(NoteNumberGlyph noteGlyph, Note note)
        {
            _notes.Add(noteGlyph);
            _noteLookup[note.String] = noteGlyph;
            if (_minNote == null || note.String < _minNote.String) _minNote = note;
        }