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

TabNoteChordGlyph() public method

public TabNoteChordGlyph ( float x, float y, bool isGrace ) : AlphaTab.Collections
x float
y float
isGrace bool
return AlphaTab.Collections
        public TabNoteChordGlyph(float x, float y, bool isGrace)
            : base(x, y)
        {
            _isGrace = isGrace;
            _notes = new FastList<NoteNumberGlyph>();
            BeatEffects = new FastDictionary<string, Glyph>();
            _noteLookup = new FastDictionary<int, NoteNumberGlyph>();
        }