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

TieGlyph() public method

public TieGlyph ( Note startNote, Note endNote, Glyph parent, bool forEnd ) : System
startNote AlphaTab.Model.Note
endNote AlphaTab.Model.Note
parent Glyph
forEnd bool
return System
        public TieGlyph(Note startNote, Note endNote, Glyph parent, bool forEnd)
            : base(0, 0)
        {
            StartNote = startNote;
            EndNote = endNote;
            Parent = parent;
            _forEnd = forEnd;
        }